-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice.html
More file actions
93 lines (82 loc) · 2.5 KB
/
Copy pathservice.html
File metadata and controls
93 lines (82 loc) · 2.5 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
<!DOCTYPE html>
<html>
<head>
<title>Website Konten</title>
<style>
h2{
text-align: center;
}
.service {
padding: 20px;
}
.service-form {
max-width: 400px;
margin: 0 auto;
text-align: center;
}
.service-form label {
display: block;
margin-bottom: 8px;
}
.service-form input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
box-sizing: border-box;
}
.service-form button {
margin-right: 10px;
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
}
.back-button {
margin-top: 15px;
background-color: #808080;
display: flex;
justify-content: space-between;
text-align:center;
}
.back-button a {
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
display: inline-block;
background-color: #808080;
width: 100%;
}
</style>
</head>
<body>
<div id="service" class="content service">
<h2>Layanan Akun</h2>
<div class="service-form">
<form action="#" method="post">
<label for="register-username">Username:</label>
<input type="text" id="register-username" name="register-username" required>
<label for="register-password">Password:</label>
<input type="password" id="register-password" name="register-password" required>
<label for="confirm-register-password">Konfirmasi Password:</label>
<input type="password" id="confirm-register-password" name="confirm-register-password" required>
<button type="submit">Daftar Akun</button>
</form>
<p>Atau</p>
<form action="#" method="post">
<button type="submit">Masuk</button>
</form>
<p>Lupa password?</p>
<form action="#" method="post">
<button type="submit">Reset Password</button>
</form>
</div>
<div class="back-button">
<a href="layout berita.html">Kembali</a>
</div>
</div>
</body>
</html>