-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (31 loc) · 1.39 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
<!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>Register</title>
<script src="https://kit.fontawesome.com/5598f0038c.js" crossorigin="anonymous"></script>
<link rel="shortcut icon" href="../assets/Chatify.png" type="image/x-icon">
</head>
<link rel="stylesheet" href="./register.css">
<body background="https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png">
<div id="login">
<div>
<h1>Register</h1>
<form id="form">
<input type="text" placeholder="Enter Your Name" id="name" minlength="4" required>
<br>
<input type="email" placeholder="Enter Your Email Address" id="email" minlength="8" required>
<br>
<input type="password" placeholder="Enter Your Password" id="password" minlength="8" required >
<br>
<input type="submit" value="Continue">
</form>
<button id="google" onclick="document.location=`https://sore-rose-clownfish-garb.cyclic.app/auth/google`"> Continue with Google <img src="../assets/glogo.png"></button>
<h3>Already have account ? <a id="a" href="./frontend/login.html">Login</a></h3>
</div>
</div>
</body>
</html>
<script src="./register.js"></script>