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

{% extends "layout.html" %}
{% block title %}login{% endblock %}
{% block content %}
<h1>Login</h1>
<b>Please login:</b><br><br>
<form method="post" action="login">
<input type="text" name="username" value="username"><br>
<input type="password" name="password" value="password"><br>
<input type="submit" value="login">
</form>
{% endblock %}