Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / auth / signup_form.html @ 4a13d054

History | View | Annotate | Download (726 Bytes)

1
<div class="form-stacked">
2
  <form action="{% url signup %}" method="post"
3
      class="innerlabels signup">{% csrf_token %}
4
       
5
      <input type="hidden" name="next" value="{{ next }}">
6
      <input type="hidden" name="code" value="{{ code }}">
7
      <input type="hidden" name="provider" value={{ provider|default:"local" }}>
8
      {% if third_party_token %}
9
      <input type="hidden" name="third_party_token" value={{ third_party_token }}>
10
      {% endif %}
11
      {% with signup_form as form %}
12
      {% include "im/form_render.html" %}
13
      {% endwith %}
14
      <div class="form-row submit">
15
          
16
          <input type="submit" class="submit altcol" value="SUBMIT" />
17
           
18
      </div>
19
  </form>
20
</div>
21