main
Last change
on this file since d659b83 was d659b83, checked in by Marko_Gjorgjievski_201136 <marko.gjorgjievski@…>, 2 months ago |
Commiting the whole project
|
-
Property mode
set to
100644
|
File size:
995 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>Register</title>
|
---|
7 | <link rel="stylesheet" href="css/styles.css">
|
---|
8 | </head>
|
---|
9 | <body>
|
---|
10 | <div class="container">
|
---|
11 | <h2>Register</h2>
|
---|
12 | <form action="/register" 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 | <label for="age">Age:</label>
|
---|
20 | <input type="text" id="age" name="age" required>
|
---|
21 |
|
---|
22 | <label for="height">Height (cm):</label>
|
---|
23 | <input type="text" id="height" name="height">
|
---|
24 |
|
---|
25 | <label for="weight">Weight (kg):</label>
|
---|
26 | <input type="text" id="weight" name="weight">
|
---|
27 |
|
---|
28 | <button type="submit">Register</button>
|
---|
29 | </form>
|
---|
30 | <p>Already have an account? <a href="/login">Login</a></p>
|
---|
31 | </div>
|
---|
32 | </body>
|
---|
33 | </html>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.