-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlogjn.html
More file actions
35 lines (35 loc) · 1.07 KB
/
logjn.html
File metadata and controls
35 lines (35 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<link
rel="preconnect"
href="https://fonts.googleapis.com https://fonts.gstatic.com"
crossorigin
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<title>Carnival Registration</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="container">
<h1>Carnival Registration</h1>
<!-- Add the onsubmit attribute to call validateForm() function -->
<form id="loginForm" onsubmit="return validateForm(event)">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required />
<br /><br />
<label for="password">Password:</label>
<input type="password" id="password" name="password" required />
<br /><br />
<input type="submit" value="Log In" />
</form>
</div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<script src="script.js"></script>
</body>
</html>