25 lines
836 B
Plaintext
25 lines
836 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>RSS Reader Login</title>
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
</head>
|
|
<div class="login-container">
|
|
<form class="login-form">
|
|
<h1>Login</h1>
|
|
<div class="form-group">
|
|
<label for="username">Username</label>
|
|
<input type="text" id="username" name="username" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" required>
|
|
</div>
|
|
<button type="submit">Log In</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|