blob: 05f2e0b5e9c0bd315a8c5964d7fea07fc7f5d786 [file] [log] [blame]
vuko3cd087d2021-12-28 13:19:40 +01001{% extends "basic.html" %}
2{% block content %}
3 <h2>Claiming a device</h2>
4 {% if not hwaddr %}
5 <p class="error">Unknown MAC. Are you sure you're in the hackerspace?</p>
6 {% else %}
7 You are about to claim <strong>{{ hwaddr }}</strong> as <strong>{{ current_user.id }}</strong>. Do you wish to continue?
8 <table>
9 <form action="" method="post">
10 <label><tr>
11 <td>Device name (optional):</td>
12 <td><input type="text" name="name" value="{{ name }}"></td>
13 </tr></label>
14 <tr>
15 <td><input type="submit" value="yes"></td>
16 </form>
17 <td><a href="/"><button>no</button></button></td>
18 </tr>
19 </table>
20 {% endif %}
21{% endblock %}