-
Notifications
You must be signed in to change notification settings - Fork 0
/
AccountSettings
73 lines (73 loc) · 2.21 KB
/
AccountSettings
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Account Settings</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0; /* Light grey background */
color: #333;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
margin-bottom: 20px;
}
.action-buttons a {
display: inline-block;
margin: 0 10px;
padding: 10px 20px;
background-color: #28a745; /* Green background */
color: white;
text-decoration: none;
border: 2px solid black; /* Black border */
border-radius: 5px;
font-size: 16px;
transition: background-color 0.3s;
}
.action-buttons a:hover {
background-color: #218838; /* Darker green on hover */
}
.nav-buttons a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #28a745; /* Green background */
color: white;
text-decoration: none;
border: 2px solid black; /* Black border */
border-radius: 5px;
font-size: 16px;
transition: background-color 0.3s;
}
.nav-buttons a:hover {
background-color: #218838; /* Darker green on hover */
}
</style>
</head>
<body>
<div class="container">
<h1>Account Settings</h1>
<p>Here you can update your username, email, and password.</p>
<div class="action-buttons">
<a href="#">Change Username</a>
<a href="#">Change Email</a>
<a href="#">Change Password</a>
</div>
<div class="nav-buttons">
<a href="settings.html">Back to Settings</a>
</div>
</div>
</body>
</html>