summaryrefslogtreecommitdiffstats
path: root/webapp/templates/settings_welcome_4.html
blob: a362578615275a7f7ecd186a680ba627eb43ccba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{%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="4" />

<p>Thanks!  Happy androiding.</p>


<input type="submit" value="Done">
</form>

{%endblock%}