-
Notifications
You must be signed in to change notification settings - Fork 0
/
post_signup.html
55 lines (51 loc) · 1.66 KB
/
post_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
<!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>Post Signup</title>
<link rel="stylesheet" href="../style/login_card.css">
<style>
#signupCard {
height: 395px;
}
#signin > p {
margin-top: -5px;
margin-bottom: 20px;
padding-left: 20px;
padding-right: 10px;
text-align: left;
font-size: 13px;
}
#forgot_pw {
font-size: 12px;
padding-top: 5px;
padding-bottom: 25px;
color: rgb(165, 165, 165);
}
</style>
</head>
<body>
<div id="signupCard">
<div id="form_inp">
<h2>Join Fiverr</h2>
<form action="" id="signin">
<input type="text" id="email" placeholder="Re-enter Email">
<input type="text" id="username" placeholder="Username">
<input type="password" id="pw" placeholder="Set Password"> </br>
<p>8 characters or longer. Combine upper and lowercase letters and numbers.</p>
<input type="submit" value="Join" onclick="sign_up()">
</form>
</div>
<div id="forgot_pw">
By joining, you agree to Fiverr’s Terms of Service,
as well as to receive occasional emails from us.
</div>
<div id="last">
<p>Already a member? <u style="color:#1dbf73">Sign In</u></p>
</div>
</div>
</body>
</html>
<script src="../script/signup_login.js"></script>