-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlamanerror.html
More file actions
140 lines (127 loc) · 3.31 KB
/
lamanerror.html
File metadata and controls
140 lines (127 loc) · 3.31 KB
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
138
139
140
<!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>Error - DICKER HOSPITAL</title>
<link rel="shortcut icon" href="assets/img/icon/DICKER_HOSPITAL_NO_BG.ico" type="image/x-icon" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Quicksand:wght@500&display=swap");
* {
margin: 0;
padding: 0;
scroll-behavior: smooth;
box-sizing: border-box;
font-family: "Quicksand";
color: black;
}
main {
margin-top: 100px;
margin-bottom: 100px;
padding: 30px;
max-width: 1500px;
margin-left: auto;
margin-right: auto;
}
main img {
margin-bottom: 100px;
}
a {
text-decoration: none;
}
.error {
transition: all 0.3s ease 0s;
margin-left: auto;
margin-right: auto;
display: flex;
justify-content: space-around;
align-items: center;
/* border: 1px solid black; */
padding: 30px;
}
.tombol_login {
width: 150px;
color: white;
font-size: 15pt;
margin-left: auto;
margin-right: auto;
border: none;
padding: 15px 0;
cursor: pointer;
border-radius: 10px;
transition: all 0.3s ease 0s;
background-color: #2b4a9d;
}
.lgn:hover .tombol_login {
width: 200px;
background-color: #95beff;
font-weight: bold;
color: black;
}
h2 {
margin: 20px 0;
font-weight: 13pt;
font-weight: bold;
}
.regis {
width: 200px;
margin-left: auto;
margin-right: auto;
border: none;
padding: 15px 0;
cursor: pointer;
border-radius: 10px;
transition: all 0.3s ease 0s;
background-color: #2b4a9d;
color: white;
font-size: 15pt;
}
.register:hover .regis {
width: 250px;
background-color: #95beff;
font-weight: bold;
color: black;
}
@media screen and (max-width: 1000px) {
.error {
flex-direction: column-reverse;
margin-bottom: 80px;
}
}
@media screen and (max-width: 700px) {
.gambar img {
width: 50%;
}
main img {
width: 300px;
}
}
</style>
</head>
<body>
<main>
<center>
<img src="assets/img/icon/DICKER_HOSPITAL_NO_BG.png" alt="hospital" />
</center>
<div class="error">
<div class="kata">
<h1>
Opss.... <br />
Silahkan Login terlebih dahulu 😁
</h1>
</div>
<div class="gambar">
<center>
<img src="assets/img/foto/hospital_1.png" alt="" />
</center>
</div>
</div>
<center>
<a href="login/login.html" class="lgn"><button class="tombol_login">Yuk Login</button></a>
<h2>Jika belum memiliki Akun, silahkan Register</h2>
<a href="registrasi/registrasi.html" class="register"><button class="regis">Register Dulu</button></a>
</center>
</main>
</body>
</html>