-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
61 lines (46 loc) · 1.77 KB
/
profile.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="./profile.css">
</head>
<body>
<div id="header">
<div id="upper">
<img src="./LOGO.png" alt="">
<h4>Download App</h4>
<h4>Become a Supplier</h4>
<a href="./index.html" style="text-decoration: none;"><h4 id="profile">Home</h4></a>
<a style="text-decoration:none" href="./cart.html"> <h4 id="cart">Cart</h4></a>
</div>
</div>
<div id="profileForm">
<div id="login">
<form id="loginForm">
<H4>Login:</H4>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit" id="loginButton">Login</button>
</form>
</div>
<div id="signup">
<form id="signupForm">
<h4>Signup:</h4>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit" id="signupButton">Signup</button>
</form>
</div>
</div>
</body>
<script src="./profile.js"></script>
</html>