blob: 6f54f6fd6ed87321dfd399ff0b0e94648677a9cb [file] [log] [blame]
{%extends "base.html"%}
{%block title1%}Settings -{%endblock%}
{%block body%}
<h2>Hi!</h2>
<form name="welcome" action="{{post_url}}" method="POST">
{{form.xsrf}}
{%if form.xsrf.errors%}
<ul>
{%for e in form.xsrf.errors%}
<li>{{e}}</li>
{%endfor%}
</ul>
{%endif%}
{{form.dest}}
<input type="hidden" name="step" value="1" />
<p>Hi, welcome to Android. Before we can get going, we need a little bit of
information from you.</p>
<table class="settings">
<tr><th>Your name</th></tr>
<tr><td>Please enter your real name.
This is the name that will be shown to other users on this site.
<p><b style="margin-right: 10px;">Your full name: </b> {{form.real_name}}
<p><i>Also, we can't accept code submitted without knowing who really submitted it.</i>
</td></tr>
</table>
<input type="submit" value="Continue">
</form>
{%endblock%}