|
Revision 11091, 0.6 KB
(checked in by edent, 15 months ago)
|
|
working from webserver
|
| Line | |
|---|
| 1 | <html> |
|---|
| 2 | <body> |
|---|
| 3 | <form action="{{MEDIA_URL}}/connect_to_node/" method="post">{% csrf_token %} |
|---|
| 4 | <p>Floor: |
|---|
| 5 | <select name = "floor"> |
|---|
| 6 | {% for floor in number_of_floors %} |
|---|
| 7 | <option value="{{floor}}">Floor {{floor}}</option> |
|---|
| 8 | {% endfor %} |
|---|
| 9 | </select> |
|---|
| 10 | </p> |
|---|
| 11 | <p>Number: |
|---|
| 12 | <select name="number"> |
|---|
| 13 | {% for node in number_of_nodes %} |
|---|
| 14 | <option value="{{node}}">Node {{node}}</option> |
|---|
| 15 | {% endfor %} |
|---|
| 16 | </select> |
|---|
| 17 | </p> |
|---|
| 18 | <p>User: <input type="text" name="user"/></p> |
|---|
| 19 | <p>Pass: <input type="password" name="pass"/></p> |
|---|
| 20 | <input type="submit" value="Check Nodebooter"/> |
|---|
| 21 | </form> |
|---|
| 22 | </body> |
|---|
| 23 | </html> |
|---|