-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteacher.html
94 lines (88 loc) · 2.79 KB
/
teacher.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MOVIN GROVIN - Teacher</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #000000;
margin: 0;
padding: 0;
align-items: center;
justify-content: center;
background-image: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0)), url("https://www.codewithrandom.com/wp-content/uploads/2023/04/Copy-of-codewithrandom11.png");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height:100vh;
}
h4{
color:white;
}
.container {
text-align: center;
height:100%;
display: flex;
margin:0;
}
.info-display {
border-radius: 5px;
padding: 10px;
flex-basis: 30%;
background-color: #000000;
margin: 0; /* Center the paragraph */
justify-content: center;
display: flex;
flex-direction: column;
align-items: center;
}
.options {
margin-top: 20px;
}
.btn {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
text-decoration: none;
color: #fff;
background-color: #7434db;
border-radius: 5px;
margin: 0 10px;
}
img{
height:100vh;
width:100%;
}
p{
color:white;
font-size: 50px;
}
h2{
color:white;
font-size: 30px;
}
a{
text-decoration: none;
color:white;
}
</style>
</head>
<body>
<div class="container">
<div class="info-display">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="currentColor" style="color:white" class="bi bi-headphones" viewBox="0 0 16 16">
<path d="M8 3a5 5 0 0 0-5 5v1h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V8a6 6 0 1 1 12 0v5a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h1V8a5 5 0 0 0-5-5"/>
</svg>
<p>Movin Grovin</p>
<h2>Hello Teachers!!<br>Login to your account</h2>
<h4>Don't have an account? <a href="teacher_signup.html">Sign Up</a></h4>
<div class="options">
<a href="teacher_signup.html" class="btn">Sign Up</a>
<a href="teacher_signin.html" class="btn">Sign In</a>
</div>
</div>
</div>
</body>
</html>