david/openvpnstatus
david
/
openvpnstatus
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
openvpnstatus/templates/login.html

12 lines
342 B
HTML
Raw Normal View History

2013-08-25 18:38:39 +02:00
{% extends "layout.html" %}
{% block title %}login{% endblock %}
{% block content %}
<h1>Login</h1>
<b>Please login:</b><br><br>
<form method="post" action="login">
2013-08-25 19:59:06 +02:00
<input type="text" name="username" value="username"><br>
<input type="password" name="password" value="password"><br>
2013-08-25 18:38:39 +02:00
<input type="submit" value="login">
</form>
{% endblock %}