mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-22 17:16:34 +03:00
4d9e33e9a8
In response to Issue 116 at https://github.com/Tivix/django-rest-auth/issues/116 * Add csrf_token tags on demo templates (was returning CSRF page) * Update settings file for the demo login (was returning message that email was required when template only shows username and password fields)
40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
<!-- Signup form -->
|
|
<form class="form-horizontal" id="signup" role="form" action="{% url 'rest_user_details' %}">{% csrf_token %}
|
|
|
|
<div class="form-group">
|
|
<label for="email" class="col-sm-2 control-label">Email</label>
|
|
<div class="col-sm-10">
|
|
<input name="email" type="text" class="form-control" id="email" placeholder="Email">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="username" class="col-sm-2 control-label">Username</label>
|
|
<div class="col-sm-10">
|
|
<input name="username" type="text" class="form-control" id="username" placeholder="Username">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="first_name" class="col-sm-2 control-label">First name</label>
|
|
<div class="col-sm-10">
|
|
<input name="first_name" type="text" class="form-control" id="first_name" placeholder="First name">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="last_name" class="col-sm-2 control-label">Last name</label>
|
|
<div class="col-sm-10">
|
|
<input name="last_name" type="text" class="form-control" id="last_name" placeholder="Last name">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-2 col-sm-10">
|
|
<button type="submit" class="btn btn-default">Save</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group api-response"></div>
|
|
</form>
|