szuru/public_html/templates/registration-form.tpl

51 lines
2.0 KiB
Smarty
Raw Permalink Normal View History

2014-09-02 09:36:42 +02:00
<div id="registration-form">
2015-06-28 12:25:35 +02:00
<p>
Registered users can view more content,<br/>
upload files and add posts to favorites.
</p>
2014-09-02 09:36:42 +02:00
2015-06-28 12:25:35 +02:00
<div class="messages"></div>
2014-09-02 09:36:42 +02:00
2015-06-28 12:25:35 +02:00
<form class="form-wrapper">
<div class="form-row">
<label class="form-label" for="registration-user">User name:</label>
<div class="form-input">
<input autocomplete="off" type="text" name="userName" id="registration-user" placeholder="e.g. darth_vader" value=""/>
</div>
</div>
2014-09-02 09:36:42 +02:00
2015-06-28 12:25:35 +02:00
<div class="form-row">
<label class="form-label" for="registration-password">Password:</label>
<div class="form-input">
<input autocomplete="off" type="password" name="password" id="registration-password" placeholder="e.g. &#x25cf;&#x25cf;&#x25cf;&#x25cf;&#x25cf;&#x25cf;&#x25cf;&#x25cf;" value=""/>
</div>
</div>
2014-09-02 09:36:42 +02:00
2015-06-28 12:25:35 +02:00
<div class="form-row">
<label class="form-label" for="registration-password-confirmation">Password (repeat):</label>
<div class="form-input">
<input autocomplete="off" type="password" name="passwordConfirmation" id="registration-password-confirmation" placeholder="e.g. &#x25cf;&#x25cf;&#x25cf;&#x25cf;&#x25cf;&#x25cf;&#x25cf;&#x25cf;" value=""/>
</div>
</div>
2014-09-02 09:36:42 +02:00
2015-06-28 12:25:35 +02:00
<div class="form-row">
<label class="form-label" for="registration-email">E-mail address:</label>
<div class="form-input">
<input autocomplete="off" type="text" name="email" id="registration-email" placeholder="e.g. vader@empire.gov" value=""/>
</div>
</div>
2014-09-02 09:36:42 +02:00
2015-06-28 12:25:35 +02:00
<div class="form-row">
<label class="form-label"></label>
<div class="form-input">
<button type="submit">Register</button>
</div>
</div>
</form>
2014-09-02 09:36:42 +02:00
2015-06-28 12:25:35 +02:00
<p id="email-info">
Your e-mail will be used to show your <a href="http://gravatar.com/">Gravatar</a>.<br/>
Leave blank for random Gravatar.
</p>
2014-09-02 09:36:42 +02:00
</div>