-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword.html
More file actions
30 lines (29 loc) · 1.1 KB
/
Copy pathpassword.html
File metadata and controls
30 lines (29 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<title>Enter your password</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Concert+One&family=Montserrat&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<script src="password.js"></script>
</head>
<body>
<!--Layout container-->
<div id="Layout-container">
<!-- 1) nav bar -->
<nav>
<span style="font-size: 1.5em;">CodeClub</span>
<a href="index.html">Home</a>
<a href="about.html">About</a>
</nav>
<!-- 2) Content-->
<div id="password-area">
<h2>Enter your password to continue...</h2>
<input type="password" id="passwordBox"><button onclick="checkPassword();">Submit</button>
<p id="incorrectPassword">
</p>
</div>
</div>
</body>
</html>