forked from Parthmandale/Technoverse_Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (109 loc) · 4.04 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://kit.fontawesome.com/64d58efce2.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<title>CodeBridge</title>
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-auth.js"></script>
</head>
<body>
<div class="container">
<div class="forms-container">
<div class="signin-signup">
<form action="#" class="sign-in-form">
<h2 class="title">Sign in</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" placeholder="Email" id="siemail" />
</div>
<div class="input-field">
<i class="fas fa-lock"></i>
<input type="password" placeholder="Password" id="sipassword" />
</div>
<input type="submit" value="Login" class="btn solid" id="login" />
<p class="social-text">Connect with us here:</p>
<div class="social-media">
<a href="#" class="social-icon">
<i class="fab fa-google"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-facebook-f"></i>
</a>
</div>
</form>
<form action="#" class="sign-up-form">
<h2 class="title">Sign up</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" placeholder="Username" id="suname" />
</div>
<div class="input-field">
<i class="fas fa-envelope"></i>
<input type="email" placeholder="Email" id="suemail" />
</div>
<div class="input-field">
<i class="fas fa-lock"></i>
<input type="password" placeholder="Password" id="supassword" />
</div>
<input type="submit" class="btn" value="Sign up" id="register" />
<p class="social-text">Connect with us here: </p>
<div class="social-media">
<a href="#" class="social-icon">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-google"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</form>
</div>
</div>
<div class="panels-container">
<div class="panel left-panel">
<div class="content">
<h3>Newcomer ?</h3>
<p>
For newcomers to our website, we kindly request that you proceed with the following sequence of actions:
firstly, initiate the registration process by creating an account, and subsequently, proceed to authenticate
yourself through the sign-in procedure.
</p>
<button class="btn transparent" id="sign-up-btn">
Sign up
</button>
</div>
<img src="images/signup.svg" class="image" alt="" />
</div>
<div class="panel right-panel">
<div class="content">
<h3>One of us ?</h3>
<p>
If you have already completed the registration process, please proceed to the login page.
</p>
<button class="btn transparent" id="sign-in-btn">
Sign in
</button>
</div>
<img src="images/login.svg" class="image" alt="" />
</div>
</div>
</div>
<script src="main.js"></script>
<script src="login.js"></script>
</body>
</html>