|
58 | 58 | <div align="center">
|
59 | 59 | You can register your account for increased protection. Click on "Register Account" and get your free recovery key today!<br/>
|
60 | 60 | <form action="{{ getLink('account/register') }}" method="post">
|
61 |
| - <input type="submit" value="Register Account" /> |
| 61 | + {% set button_name = 'Register Account' %} |
| 62 | + {% include('buttons.base.html.twig') %} |
62 | 63 | </form>
|
63 | 64 | </div>
|
64 | 65 | <br/>
|
|
69 | 70 | A request has been submitted to change the email address of this account to <b>{{ email_new }}</b>. After <b>{{ email_new_time|date("j F Y, G:i:s") }}</b> you can accept the new email address and finish the process. Please cancel the request if you do not want your email address to be changed! Also cancel the request if you have no access to the new email address!
|
70 | 71 |
|
71 | 72 | <form action="{{ getLink('account/email') }}" method="post">
|
72 |
| - <input type="submit" value="Edit" /> |
| 73 | + {% set button_name = 'Edit' %} |
| 74 | + {% include('buttons.base.html.twig') %} |
73 | 75 | </form>
|
74 | 76 | </div>
|
75 | 77 | <br/><br/>
|
|
84 | 86 | <td style="width: 90px;">Email Address:</td>
|
85 | 87 | <td>{{ account_email ~ email_change }}
|
86 | 88 | <form action="{{ getLink('account/email') }}" method="post">
|
87 |
| - <input type="submit" value="Change Email" /> |
| 89 | + {% set button_name = 'Change Email' %} |
| 90 | + {% include('buttons.base.html.twig') %} |
88 | 91 | </form>
|
89 | 92 | </td>
|
90 | 93 | </tr>
|
|
120 | 123 | </tr>
|
121 | 124 | </table>
|
122 | 125 | <form action="{{ getLink('account/info') }}" method="post">
|
123 |
| - <input type="submit" value="Change Info" /> |
| 126 | + {% set button_name = 'Change Info' %} |
| 127 | + {% include('buttons.base.html.twig') %} |
124 | 128 | </form>
|
125 | 129 | <br/>
|
126 | 130 | <h2>Action Log</h2>
|
|
159 | 163 | <tr>
|
160 | 164 | <td>
|
161 | 165 | <form action="{{ getLink('account/character/create') }}" method="post" >
|
162 |
| - <input type="Submit" name="Create Character" value="Create Character" /> |
| 166 | + {% set button_name = 'Create Character' %} |
| 167 | + {% include('buttons.base.html.twig') %} |
163 | 168 | </form>
|
164 | 169 | </td>
|
165 | 170 | {% if config.account_change_character_name %}
|
166 | 171 | <td>
|
167 | 172 | <form action="{{ getLink('account/character/name') }}" method="post" >
|
168 |
| - <input type="Submit" name="Change Name" value="Change Name" /> |
| 173 | + {% set button_name = 'Change Name' %} |
| 174 | + {% include('buttons.base.html.twig') %} |
169 | 175 | </form>
|
170 | 176 | </td>
|
171 | 177 | {% endif %}
|
172 | 178 | {% if config.account_change_character_sex %}
|
173 | 179 | <td>
|
174 | 180 | <form action="{{ getLink('account/character/sex') }}" method="post" >
|
175 |
| - <input type="Submit" name="Change Sex" value="Change Sex" /> |
| 181 | + {% set button_name = 'Change Sex' %} |
| 182 | + {% include('buttons.base.html.twig') %} |
176 | 183 | </form>
|
177 | 184 | </td>
|
178 | 185 | {% endif %}
|
179 | 186 | <td>
|
180 | 187 | <form action="{{ getLink('account/character/delete') }}" method="post">
|
181 |
| - <input type="Submit" name="Delete Character" value="Delete Character" /> |
| 188 | + {% set button_name = 'Delete Character' %} |
| 189 | + {% include('buttons.base.html.twig') %} |
182 | 190 | </form>
|
183 | 191 | </td>
|
184 | 192 | </tr>
|
|
0 commit comments