-
Notifications
You must be signed in to change notification settings - Fork 1
/
registration.html
131 lines (124 loc) · 4.21 KB
/
registration.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
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<!DOCTYPE html>
<html lang="en">
<title>Illuminate</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif}
.w3-bar,h1,button {font-family: "Montserrat", sans-serif}
.fa-anchor,.fa-coffee {font-size:200px}
</style>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-pale-yellow w3-card w3-left-align w3-large">
<a href="registration.html" class="w3-bar-item w3-button w3-padding-large w3-white">Register/Login</a>
<a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-padding-large w3-hover-white w3-large w3-red" href="javascript:void(0);" onclick="myFunction()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
<a href="main.html" class="w3-bar-item w3-button w3-padding-large w3-soft-yellow">Home</a>
<a href="community_posts.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">Community posts</a>
<a href="FAQ.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">FAQ</a>
<a href="bug_report.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">Report Bugs</a>
</div>
<!-- Navbar on small screens -->
<!-- <div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium w3-large">
<a href="#" class="w3-bar-item w3-button w3-padding-large">Link 1</a>
<a href="#" class="w3-bar-item w3-button w3-padding-large">Link 2</a>
<a href="#" class="w3-bar-item w3-button w3-padding-large">Link 3</a>
<a href="bug_report.html" class="w3-bar-item w3-button w3-padding-large">BALLS</a>
</div> -->
</div>
<!-- Footer -->
<footer>
<a href="hotline.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-gray">Hotline</a>
<a href="FAQ.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-gray">Help</a>
</footer>
<script>
// Used to toggle the menu on small screens when clicking on the menu button
function myFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>
</style>
<body>
<!-- CSS for the button -->
<style>
body{
font-family: "Montserrat", sans-serif;
}
* {box-sizing: border-box}
input[type = text], input[type = password] {
width: 100%;
font-size: 28px;
padding: 15px;
margin: 5px 0 22px 0;
border: none;
background: #f1f1f1;
}
label {
font-size: 15px;
}
input[type = text]:focus, input[type = password]:focus {
background-color: #ddd;
outline: none;
}
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
button {
font-size: 18px;
font-weight: bold;
background-color: rgb(10, 119, 13);
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
button:hover{
opacity: 1;
}
.cancel {
padding: 14px 20px;
background-color: #ff3d2f;
}
.sign_up {
padding: 16px;
}
.sign_up p{
font-size: 28px;
}
</style>
<!-- Actual html for the button -->
<body>
<div class="sign_up">
<h1>Sign up</h1>
<hr>
<label for="Email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="Email" required>
<label for="Password"><b>Password</b></label>
<input type="Password" placeholder="Enter Password" name="Password" required>
<label>
<button type="button" class="cancel">Cancel</button>
<a href ="welcome_page.html">
<button type="button" class="Sign">Sign Up</button></a>
</label>
</div>
</body>
</head>
</html>