Clean up register.html

This commit is contained in:
Kevin Chung
2020-06-03 01:39:14 -04:00
parent 423cbf8dc0
commit 69b24f75e8

View File

@@ -22,28 +22,28 @@
<hr> <hr>
{% endif %} {% endif %}
<form method="post" accept-charset="utf-8" autocomplete="off" role="form" class="form-horizontal"> <form method="post" accept-charset="utf-8" autocomplete="off" role="form">
<div class="form-group"> <div class="form-group">
<label for="name-input"> <label>
User Name User Name
</label> </label>
<input class="form-control" type="text" name="name" id="name-input" {% if name %}value="{{ name }}"{% endif %} /> <input class="form-control" type="text" name="name" {% if name %}value="{{ name }}"{% endif %} />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="email-input"> <label>
Email Email
</label> </label>
<input class="form-control" type="text" name="email" id="email-input" {% if email %}value="{{ email }}"{% endif %} /> <input class="form-control" type="text" name="email" {% if email %}value="{{ email }}"{% endif %} />
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="password-input"> <label>
Password Password
</label> </label>
<input class="form-control" type="password" name="password" id="password-input" {% if password %}value="{{ password }}"{% endif %}/> <input class="form-control" type="password" name="password" {% if password %}value="{{ password }}"{% endif %}/>
</div> </div>
<div class="row pt-3"> <div class="row pt-3">
<div class="col-md-12"> <div class="col-md-12">
<button type="submit" tabindex="0" class="btn btn-md btn-primary btn-outlined float-right">Submit</button> <button type="submit" class="btn btn-md btn-primary btn-outlined float-right">Submit</button>
</div> </div>
</div> </div>
<input type="hidden" name="nonce" value="{{ nonce }}"> <input type="hidden" name="nonce" value="{{ nonce }}">