-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
43 lines (38 loc) · 1.95 KB
/
Copy pathsignup.html
File metadata and controls
43 lines (38 loc) · 1.95 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SignUp</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bowlby+One+SC&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/css/signup.css">
</head>
<body>
<div id="content_container">
<div id="form_container">
<div id="form_header_container">
<h2 id="form_header">Sign Up</h2>
</div>
<div id="form_content_container">
<div id="form_content_inner_container">
<input type="text" id="full_name" placeholder="Full Name">
<input type="email" id="email" placeholder="E-Mail">
<input type="password" id="password" placeholder="Password">
<input type="text" id="pfp" placeholder="Link to Profile-Picture">
<div id="button_container">
<button onclick="register()">Sign Up</button>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="https://www.gstatic.com/firebasejs/8.6.8/firebase-app.js"></script>
<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>
<script src="/js/signup.js"></script>
</html>