-
Notifications
You must be signed in to change notification settings - Fork 0
/
examle.html
124 lines (102 loc) · 3.08 KB
/
examle.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>
<head>
<title>MasonVerse</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
display: flex;
align-items: center;
width: 100%;
}
.left-half {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
.logo {
width: 430px;
display: flex;
top: 23px;
left:180px;
margin-bottom: 20px;
}
.form-container {
width: 350px;
display: flex;
flex-direction: column;
align-items: center;
}
.form-container input[type="text"],
.form-container input[type="password"],
.form-container input[type="submit"] {
width: 100%;
margin-bottom: 10px;
padding: 10px;
font-size: 16px;
border-radius: 5px;
}
.form-container input[type="submit"] {
margin-top: 20px;
width: 107%;
background-color: rgb(212, 55, 55);
}
.right-half {
display: flex;
justify-content: center;
align-items: center;
}
.right-half img {
width: 100%;
}
.login{
width: 194px;
left: 76px;
height: 28px;
top: 523px;
margin-top : 10px;
margin-right: 150px;
color: #012622;
font-size: 55px;
font-family: Roboto;
font-weight: bold;
line-height: 10px;
word-wrap: break-word;
}
.forget{
margin-left: 260px;
font-size: 12px;
color: rgba(0, 0, 0, 0.687);
}
</style>
</head>
<body>
<div class="container">
<div class="left-half">
<img class="logo" src="image/masonlogo.png">
<p class="login">
Login
</p>
<div class="form-container">
<form action="pg2/index.html" method="post">
<input type="text" placeholder="NetID" id="NetID" name="NetID" required>
<input type="password" placeholder="Password" id="password" name="password" required>
<a class= "forget" href="https://password.gmu.edu/">Forgot Password?</a>
<input type="submit" value="Welcome">
</form>
</div>
</div>
<div class="right-half">
<img src="image/image.png">
</div>
</div>
</body>
</html>