cf24d63fa4
Markdown lists in comments inherited some unwanted CSS rules. The fix is to make the culprit rules apply to more specific elements.
56 lines
2 KiB
Smarty
56 lines
2 KiB
Smarty
<div class='content-wrapper' id='user-registration'>
|
|
<h1>Registration</h1>
|
|
<form autocomplete='off'>
|
|
<input class='anticomplete' type='text' name='fakeuser'/>
|
|
<input class='anticomplete' type='password' name='fakepass'/>
|
|
|
|
<ul class='input'>
|
|
<li>
|
|
<%= ctx.makeTextInput({
|
|
text: 'User name',
|
|
name: 'name',
|
|
placeholder: 'letters, digits, _, -',
|
|
required: true,
|
|
pattern: ctx.userNamePattern,
|
|
}) %>
|
|
</li>
|
|
<li>
|
|
<%= ctx.makePasswordInput({
|
|
text: 'Password',
|
|
name: 'password',
|
|
placeholder: '5+ characters',
|
|
required: true,
|
|
pattern: ctx.passwordPattern,
|
|
}) %>
|
|
</li>
|
|
<li>
|
|
<%= ctx.makeEmailInput({
|
|
text: 'Email',
|
|
name: 'email',
|
|
placeholder: 'optional',
|
|
}) %>
|
|
<p class='hint'>
|
|
Used for password reminder and to show a <a href='http://gravatar.com/'>Gravatar</a>.
|
|
Leave blank for random Gravatar.
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
|
|
<div class='messages'></div>
|
|
<div class='buttons'>
|
|
<input type='submit' value='Create an account'/>
|
|
</div>
|
|
</form>
|
|
|
|
<div class='info'>
|
|
<p>Registered users can:</p>
|
|
<ul>
|
|
<li><i class='fa fa-upload'></i> upload new posts</li>
|
|
<li><i class='fa fa-heart'></i> mark them as favorite</li>
|
|
<li><i class='fa fa-commenting-o'></i> add comments</li>
|
|
<li><i class='fa fa-star-half-o'></i> vote up/down on posts and comments</li>
|
|
</ul>
|
|
<hr/>
|
|
<p>By creating an account, you are agreeing to the <a href='/help/tos'>Terms of Service</a>.</p>
|
|
</div>
|
|
</div>
|