-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
76 lines (67 loc) · 2.6 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
<!DOCTYPE html>
<html>
<head>
<title>Responsive Login</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="container">
<div class="forms-container">
<div class="signin-signup">
<div class="sign-form">
<h2 class="title"> Sign Up</h2>
<div class="input-field">
<i class='bx bx-envelope' ></i>
<input type="text" id="email" placeholder="Email">
</div>
<div class="input-field">
<i class='bx bx-user-circle'></i>
<input type="text" id="username" placeholder="Username">
</div>
<div class="input-field">
<i class='bx bxs-lock'></i>
<input type="password" id="password" placeholder="Password">
</div>
<button onclick="register()" class="btn">Sign Up</button>
<p class="social-text">Or sign up with socials:</p>
<div class="social-media">
<a href="#" class="social-icon">
<i class='bx bxl-facebook' ></i>
</a>
<a href="#" class="social-icon">
<i class='bx bxl-google' ></i>
</a>
<a href="#" class="social-icon">
<i class='bx bxl-linkedin' ></i>
</a>
<a href="#" class="social-icon">
<i class='bx bx-envelope' ></i>
</a>
</div>
</div>
</div>
</div>
<div class="panels-container">
<div class="panel">
<div class="content">
<a href="index.html"><button class="btnback"><i class='bx bx-arrow-back'></i></button></a></i>
<h3>One of us?</h3>
<p>Sign In and make a new quiz!</p>
<a href="signin.html"><button class="btn transparent" id="sign-in-btn">Sign In</button></a>
</div>
<img src="https://cdn-icons-png.flaticon.com/512/4924/4924662.png" alt="" class="image">
</div>
</div>
</div>
</body>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.6.8/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.6.8/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.8/firebase-database.js"></script>
<!-- Our script must be loaded after firebase references -->
<script src="firebase.js"></script>
<script src="sign.js"></script>
</html>