-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
141 lines (120 loc) · 5.91 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>iFlix - Sign Up</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.0/axios.min.js"></script>
<script src="https://kit.fontawesome.com/29e915bfbc.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.css" />
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;900&display=swap" rel="stylesheet">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header class="showcase sign-up-page">
<div class="showcase-top">
<a href="index.html" class="iflix-sign-in">
<img src="./img/iFlix.png" alt="iflix logo">
<!-- <img src="../img/iFlix.png" alt="iflix logo" /> -->
<!-- <img src="https://imgur.com/u6j65tI" alt="iflix logo" /> -->
</a>
<!-- <a href="#" class="sign-in btn btn-rounded grad1">Sign Out</a> -->
<a href="signin.html" class="sign-in btn btn-rounded grad1">Sign In</a>
</div>
</header>
<!-- Sign in popup -->
<section id="sign-up" class="sign-form">
<div class="container">
<!-- 450 width 660 length -->
<div class="sign-in-info, sign-up-info grad3">
<div class="signing-title">
<p>Sign Up</p>
</div>
<form action="signin.html">
<div class="container">
<!-- Email -->
<label for="email">What is your email?</label>
<input type="email" id="email-signup1" class="emails" placeholder="Enter your email" name="email" required>
<!-- Confirm Email -->
<label for="email">Confirm your email?</label>
<input type="email"id="email-signup2" class="emails" placeholder="Enter your email again" name="email" required>
<!-- Password -->
<label for="psw">Create a password</label>
<input type="password" placeholder="Password" name="psw" required>
<!-- Username -->
<label for="uname">What should we call you?</label>
<input type="text" id="username" placeholder="Enter your username" name="uname" required>
<!-- Birthday -->
<label for="birthday">Birthday:</label>
<input type="date" id="birthday" name="birthday">
<!-- Gender -->
<p>What's your gender?</p>
<div>
<input type="radio" id="female"
name="gender" value="female">
<label for="female">Female</label>
<input type="radio" id="male"
name="gender" value="male">
<label for="male">Male</label>
<input type="radio" id="non-binary"
name="gender" value="non-binary">
<label for="non-binary">Non-binary</label>
</div>
<label class="checkboxes">
<input type="checkbox" name="checkboxes" value="checkbox"> Share my registration data with iFlix's content providers for marketing purposes.
</label>
<button type="submit">Sign Up</button>
<!-- <label class="remember">
<input type="checkbox" checked="checked" name="remember"> Remember me
</label>
<a href="#" class="need-help">Need help? </a> -->
</div>
<div class="sign-up-or-sign-in">
<a href="#" class="google-logo"><img src="img/google-logo.png" /> Signup with Google </a>
<p>Already a member? <a href="signin.html">Sign in</a></p>
</div>
<div class="container cancel" >
<button type="button" class="cancelbtn"><a href="index.html">Cancel</a></button>
<span class="psw">Forgot <a href="#">password?</a></span>
</div>
<p class="small-learn-more">This page is protected by Google reCAPTCHA to ensure you're not a bot. <a href="#">Learn more</a></p>
</form>
</div>
</div>
</section>
<!-- Info Content -->
<section class="info-tabs">
<div class="container">
<div id="info-tab-1" class="info-tab-item tab-border">
<i class="fas la-trophy fa-3x"></i>
<p>Awards</p>
</div>
<div id="info-tab-2" class="info-tab-item">
<i class="fas la-tv fa-3x"></i>
<p>Movies</p>
</div>
<div id="info-tab-3" class="info-tab-item">
<i class="fas la-users fa-3x"></i>
<p>Celebritiess</p>
</div>
<div id="info-tab-4" class="info-tab-item">
<i class="fas la-film fa-3x"></i>
<p>Box Office Hits</p>
</div>
</section>
<script src="js/utils.js"></script>
<script src="js/autocomplete.js"></script>
<script src="js/index.js"></script>
</body>
</html>