-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
124 lines (111 loc) · 3.78 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
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
<!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>Sign up page</title>
<link rel="stylesheet" type="text/css" href="style.sign.css">
<style>
.buttons {
margin-top: 25px;
text-align: center;
color: yellow;
position: relative; right: -0px; top: 150px;
}
button {
background: none;
border: none;
cursor: pointer;
height: 48px;
outline: none;
padding: 0;
width: 48px;
}
#play {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/play.svg);
}
#play.played {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/play1.svg);
}
#pause {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/pause.svg);
}
#pause.paused {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/pause1.svg);
}
#stop {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/stop.svg);
}
#stop.stopped {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/stop1.svg);
}
@media (max-width: 700px) {
html {
font-size: 14pt;
}
article {
width: 90%;
}
}
body {
margin: 0;
}
footer {
text-align: center;
list-style: none;
color: white;
}
/* https://github.com/thedevdrawer/js-login */
/*https://www.hongkiat.com/blog/text-to-speech*/
</style>
</head>
<div class=buttons>
<button id=play></button>
<button id=pause></button>
<button id=stop></button>
</div>
<article>
<img class="batlogo" src="logo.png">
<div class="contained">
<b><p class="text" style="text-align: center;">The Dark Knight<br>
Private Information Page Of The most Iconic Hero</p></b>
<div class="banner">
</div>
<body class="Signup">
<div class="container">
<h2 class="text-center">Signup</h2>
<br>
<form action="index.html" class="SignupForm">
<div class="input-group">
<label for="username" class="label">Email</label>
<input type="text" id="username" class="input" required>
<span class="error-message"></span>
</div>
<br>
<div class="input-group">
<label for="username" class="label">Username</label>
<input type="text" id="username" class="input" required>
<span class="error-message"></span>
</div>
<br>
<div class="input-group">
<label for="password" class="label">Password</label>
<input type="password" id="password" class="input" required>
<span class="error-message"></span>
</div>
<br>
<button class="button" type="submit">Signup</button>
</form>
</div>
</div>
<footer>
<u><h3>Created By: Vengeance</h3></u>
<li>Abdel Rahman Yousef </li>
<li>Abdul Cheema</li>
<li>Philip Idowu</li>
</footer>
</article>
</body>
<script src="textospeech.js"></script>
</html>