-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.html
137 lines (118 loc) · 3.79 KB
/
auth.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
132
133
134
135
136
137
<!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>Login</title>
<link rel="stylesheet" type="text/css" href="style.min.css">
<script defer src="login.js"></script>
<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;
}
.banner {
border: 40px solid orange;
margin-top: -300px;
}
.contained {
text-align: center;
}
#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>
<div class="bruce">
<img class="batlogo" src="logo.png">
</div>
<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>
<div class="banner">
</div>
<body class="login">
<div class="container">
<h2 class="text-center">Login</h2>
<br>
<form action="index.html" class="loginForm">
<div class="input-group">
<label for="username" class="label">Username</label>
<input type="text" id="username" class="input">
<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">
<span class="error-message"></span>
</div>
<br>
<button class="button" type="submit">Login</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>