23 lines
503 B
HTML
23 lines
503 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>{{project_name}}</title>
|
|
<link rel="stylesheet" href="static/css/index.css" type="text/css">
|
|
</head>
|
|
|
|
<body>
|
|
<h1>{{project_name}}</h1>
|
|
<form method="post" a>
|
|
<label for="username">Username: </label>
|
|
<input type="text" name="username" required>
|
|
<br>
|
|
<label for="password">Password: </label>
|
|
<input type="text" name="password" required>
|
|
<br>
|
|
<input type="submit" value="login">
|
|
</form>
|
|
</body>
|
|
|
|
</html> |