-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
83 lines (74 loc) · 2.76 KB
/
signup.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YumTrade - SignUp</title>
<script src="signup.js"></script>
<link rel="stylesheet" href="signupstyle.css">
</head>
<body>
<header>
<nav class="navigation">
<div class="left-items">
<img src="logo.png" alt="Logo" id="logo">
<div id="company-name">
<h2>
YumTrade
</h2>
<span id="description">Food Market Exchange</span>
</div>
</div>
<div class="right-items">
<a href="signup.html" target="_self">Home</a>
<a href="main.html">Listings</a>
<button id="signupButton">Sign Up</button>
<div id="signupBox" class="hidden">
<form id="signupForm">
<input type="text" placeholder="Username">
<input type="email" placeholder="Email">
<input type="password" placeholder="Password">
<button type="submit">Sign Up</button>
</form>
</div>
</div>
</nav>
</header>
<div class="video-background">
<video autoplay muted loop id="video-bg">
<source src="video1.mp4" type="video/mp4">
</video>
<h1 id="slogan">
<span>Savor the Flavor, Swap with Favor!</span>
</h1>
</div>
<br>
<br>
<br>
<div class="wrapper">
<div class="form-box signup">
<form class="form" action="#" id="signup">
<h2 class="form__title">Ready to trade? List the item!</h2>
<br>
<p>Enter Username</p>
<input id="name" type="text" class="form__input" autofocus placeholder="Username">
<br>
<p>Enter your swap item</p>
<input id="item" type="text" class="form__input" autofocus placeholder="Swap Name">
<br>
<p>Send a picture of the item to be swaped</p>
<input id="photo" type="file" name="photo" accept="image/*" placeholder="Photo of item">
<br>
<p>Enter the number of days since the purchase</p>
<input id="swapinfo" type="number" class="form__input" autofocus placeholder="Days since bought">
<br>
<div class="form-box signup">
</div>
<div id="button">
<button id="submit" type="button">Submit</button>
</div>
</form>
</div>
</body>
<script src="signup2.js" type="module"></script>
</html>