-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.html
35 lines (34 loc) · 994 Bytes
/
page2.html
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>
<title>Page 2 - My Dummy Website</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="scriptpage2.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="page1.html">Page 1</a></li>
<li><a href="page2.html">Page 2</a></li>
</ul>
</nav>
</header>
<div class="content">
<h1>Page 2</h1>
<div id="loginContainer">
<h2>Login Required</h2>
<form id="loginForm">
<input type="text" id="username" placeholder="Username">
<input type="password" id="password" placeholder="Password">
<button type="button" onclick="login()">Login</button>
</form>
</div>
<div id="loggedInContainer" style="display: none;">
<p>You are logged in as: <span id="loggedInUser"></span></p>
<p>This is Page 2 of the website.</p>
</div>
</div>
</body>
</html>