Skip to content

Commit

Permalink
fix: use correct layout
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Kyle Clemens committed Jul 13, 2018
1 parent 85748d4 commit 3f40410
Showing 1 changed file with 22 additions and 20 deletions.
42 changes: 22 additions & 20 deletions webserver/web/templates/auth/register.html.tera
Original file line number Diff line number Diff line change
Expand Up @@ -123,28 +123,30 @@ Create a new account.
</p>
</div>

<div class="field has-addons">
<div class="field">
<label class="label">Password (again)</label>
<div class="control has-icons-left">
<input
required
id="password_verify"
name="password_verify"
class="input"
type="password"
minlength="10"
placeholder="What you typed above"
required/>
<span class="icon is-small is-left">
<i class="fas fa-asterisk"></i>
</span>
</div>
<div class="control">
<a name="password_reveal" class="button">
<span class="icon is-small">
<i class="fas fa-eye"></i>
<div class="field has-addons">
<div class="control is-expanded has-icons-left">
<input
required
id="password_verify"
name="password_verify"
class="input"
type="password"
minlength="10"
placeholder="What you typed above"
required/>
<span class="icon is-small is-left">
<i class="fas fa-asterisk"></i>
</span>
</a>
</div>
<div class="control">
<a name="password_reveal" class="button">
<span class="icon is-small">
<i class="fas fa-eye"></i>
</span>
</a>
</div>
</div>
</div>

Expand Down

0 comments on commit 3f40410

Please sign in to comment.