source: src/main/resources/templates/login.html

main
Last change on this file was d659b83, checked in by Marko_Gjorgjievski_201136 <marko.gjorgjievski@…>, 2 months ago

Commiting the whole project

  • Property mode set to 100644
File size: 697 bytes
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Login</title>
7 <link rel="stylesheet" href="css/styles.css">
8</head>
9<body>
10<div class="container">
11 <h2>Login</h2>
12 <form action="/login" method="post">
13 <label for="name">Name:</label>
14 <input type="text" id="name" name="name" required>
15
16 <label for="password">Password:</label>
17 <input type="password" id="password" name="password" required>
18
19 <button type="submit" value="Login">Login</button>
20 </form>
21 <p>Don't have an account? <a href="/register">Register</a></p>
22</div>
23</body>
24</html>
Note: See TracBrowser for help on using the repository browser.