-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
24 lines (23 loc) · 760 Bytes
/
Copy pathheader.html
File metadata and controls
24 lines (23 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<nav class="navbar">
<a href="index.html" class="logo">MockEcomm</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="cart.html">Cart</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
<div class="auth-section">
<button id="auth-button" class="btn-auth">Login</button>
</div>
</nav>
<div id="login-modal" class="modal" style="display:none;">
<div class="modal-content">
<span class="close-button">×</span>
<h3>Login</h3>
<form id="login-form">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<button type="submit" class="btn">Login</button>
</form>
</div>
</div>