Initial commit. Move from pithos repository.
[astakos] / astakos / im / templates / register.html
1 {% extends "base.html" %}
2
3 {% block title%}
4         <h1>Welcome</h1>{{provider}}
5 {% endblock title%}
6
7 {% block body %}
8 <form action={%url astakos.im.views.register provider%} method="post">
9     {{ formset.as_p }}
10 <div>
11     <button type="submit" class="btn primary">Register</button>
12 </div>
13 <input type="hidden" name="provider" value="{{ provider }}">
14 <input type="hidden" name="code" value="{{ code }}">
15 <input type="hidden" name="next" value="{{ next }}">
16
17 </form>
18 {% endblock body %}