-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
63 lines (56 loc) · 1.98 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
62
63
<!DOCTYPE html>
<html>
<head>
<title>Profile</title>
<link rel="stylesheet" href="profile.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="sign">
<nav>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()" ></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="aboutUs.html">ABOUT</a></li>
<li><a href="signup.html">SIGN IN</a></li>
<li><a href="Shop.php">SHOP</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu"></i>
</nav>
<h1> Welcome to Herfetna! </h1>
</section>
<div class="container">
<h2>Profile</h2>
<form action="profile.php" method="post">
<br><br>
<h2>You can upload your handcraft pictures here!</h2>
<br><br>
<label for="id">handcraft ID:</label>
<input type="text" id="id" name="id">
<br><br>
<label for="image">Handcraft Picture:</label>
<input type="file" id="image" name="image">
<br><br>
<label for="type">Handcraft Type:</label>
<select id="type" name="type">
<option value="glass">Glass</option>
<option value="wood">Wood</option>
<option value="embroidery">Embroidery</option>
</select>
<br><br>
<label for="price">Price:</label>
<input type="text" id="price" name="price">
<br><br>
<label for="year">year:</label>
<input type="text" id="year" name="year">
<br><br>
<label for="weight">Weight:</label>
<input type="text" id="weight" name="weight">
<br><br>
<button class="submit">submit</button>
</form>
</div>
</body>
</html>