-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
80 lines (63 loc) · 3.45 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
<!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>Curenimal | Sign Up</title>
<link rel="icon" type="image/x-icon" href="images/Fav.jpg">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/res.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rhodium+Libre&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Paytone+One&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<section class="signupPage">
<div class="container">
<div class="image">
<img src="images/logo.png" alt="logo" class="logo">
<span class="name">
<h1>CURENIMAL</h1> <br>
<p>LOVE THE WORLDLESS</p>
</span>
</div>
<div class="signUpForm">
<form onsubmit="signUp()" id="signUpForm">
<h1 style="text-align: center;">Get Started</h1>
<h3 style="text-align: center; font-size: 14px;">Already have an account? <a href="./login.html" style="color: blue; cursor: pointer; text-decoration: none;">Log in </a>
</h3>
<h2 style="text-align: center;">Sign Up</h2>
<label for="username">Username</label> <br>
<input type="text" id="username" name="username" required> <br>
<label for="email">Email</label> <br>
<input type="email" id="email" name="email" required> <br>
<label for="password">Password</label> <br>
<input type="password" id="password" name="password" required> <br>
<button id="next" type="submit">Sign Up</button>
</form>
</div>
</div>
<div class="paw">
<img src="images/paws.png" alt="paws_pic" class="paw">
</div>
</section>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.6.7/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.7/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.7/firebase-auth.js"></script>
<script src="js/firebase.js"></script>
<script src="js/signup.js"></script>
</body>
</html>