Spaces:
Running
Running
Update index.html
Browse files- index.html +35 -18
index.html
CHANGED
|
@@ -1,19 +1,36 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 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>Simple Login Page</title>
|
| 7 |
+
<!-- Link to the CSS file -->
|
| 8 |
+
<link rel="stylesheet" href="style.css" />
|
| 9 |
+
</head>
|
| 10 |
+
<body>
|
| 11 |
+
<!-- Login container -->
|
| 12 |
+
<div class="login-container">
|
| 13 |
+
<h2>Login</h2>
|
| 14 |
+
|
| 15 |
+
<!-- Login form -->
|
| 16 |
+
<form id="loginForm">
|
| 17 |
+
<!-- Username input -->
|
| 18 |
+
<label for="username">Username:</label>
|
| 19 |
+
<input type="text" id="username" name="username" required />
|
| 20 |
+
|
| 21 |
+
<!-- Password input -->
|
| 22 |
+
<label for="password">Password:</label>
|
| 23 |
+
<input type="password" id="password" name="password" required />
|
| 24 |
+
|
| 25 |
+
<!-- Submit button -->
|
| 26 |
+
<button type="submit">Login</button>
|
| 27 |
+
</form>
|
| 28 |
+
|
| 29 |
+
<!-- Placeholder to show login result -->
|
| 30 |
+
<p id="message"></p>
|
| 31 |
+
</div>
|
| 32 |
+
|
| 33 |
+
<!-- Link to JavaScript file -->
|
| 34 |
+
<script src="script.js"></script>
|
| 35 |
+
</body>
|
| 36 |
</html>
|