vpnmanager/templates/manager/editwifi.html

24 lines
803 B
HTML
Raw Normal View History

2018-12-28 09:43:57 +00:00
{% extends "base.html" %}
{% block content %}
<form action="#" method="post">
{% csrf_token %}
<div class="form-group">
<label for="serial">Common Name (Serial)</label>
2019-01-19 09:51:17 +00:00
<input type="text" class="form-control" name="serial" id="serial" value="{{ wifi.serial }}"></input>
2018-12-28 09:43:57 +00:00
</div>
<div class="form-group">
<label for="ssid">WiFi SSID</label>
2019-01-19 09:51:17 +00:00
<input type="text" class="form-control" name="ssid" id="ssid" value="{{ wifi.ssid }}"></input>
2018-12-28 09:43:57 +00:00
</div>
<div class="form-group">
<label for="secret">WiFi WPA2 Key</label>
2019-01-19 09:51:17 +00:00
<input type="text" class="form-control" id="key" name="key" value="{{ wifi.key }}"></input>
2018-12-28 09:43:57 +00:00
</div>
<button type="submit" class="btn btn-success">Apply Changes</button>
<a class="btn btn-danger" href="/" role="button">Cancel</a>
</form>
{% endblock %}