diff options
Diffstat (limited to 'templates/login_form.html')
-rw-r--r-- | templates/login_form.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/login_form.html b/templates/login_form.html new file mode 100644 index 0000000..b179732 --- /dev/null +++ b/templates/login_form.html @@ -0,0 +1,16 @@ +<html> +<head> +<title>Login Form</title> +<meta name="viewport" content="width=device-width, initial-scale=1"> +</head> +<body> +<center> +<h1>Login Form</h1> +<form action="{{ login_url }}" method="post"> +<p>Username <input type="text" value="" name="username" required/></p> +<p>Password <input type="password" name="password" required/></p> +<p><input accesskey="s" type="submit" value="Submit"/></p> +</form> +</center> +</body> +</html> |