2014-10-15 19:32:19 +04:00
|
|
|
<!-- Signup form -->
|
2015-12-22 00:32:53 +03:00
|
|
|
<form class="form-horizontal ajax-post" role="form" action="{% url 'rest_verify_email' %}">{% csrf_token %}
|
2014-10-15 19:32:19 +04:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="key" class="col-sm-2 control-label">Key</label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<input name="key" type="text" class="form-control" id="key" placeholder="Key">
|
2014-10-16 15:13:55 +04:00
|
|
|
<p class="help-block">Put here a key which was sent in verification email</p>
|
2014-10-15 19:32:19 +04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="col-sm-offset-2 col-sm-10">
|
|
|
|
<button type="submit" class="btn btn-default">Verify</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group api-response"></div>
|
|
|
|
</form>
|