initial version of the sms written at DBA
[rapidsms] / templates / new_name.tmpl
1 {% extends 'layout.tmpl' %}
2
3 {% block content %}
4 <h2>Enter Name/Phone Number</h2>
5
6 {% if errors %}
7 {% include '_error.tmpl' %}
8 {% endif %}
9
10 <form method="POST" action="{{homepath}}/new_name">
11
12 <p><label>Name</label>
13 <input name="name" type="text" size="50" value="{{input.name}}" /></p>
14
15 <p><label>Phone Number</label>
16 <input name="phone_number" type="text" size="50"
17        value="{{input.phone_number}}" /></p>
18
19 <input type="submit" value="Save" />
20 </form>
21 {% endblock %}

Benjamin Mako Hill || Want to submit a patch?