-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.html
158 lines (138 loc) · 3.24 KB
/
test.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nintendo Account Settings</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
header {
background-color: #e60012;
color: white;
padding: 15px;
text-align: center;
}
nav {
background-color: #333;
color: white;
display: flex;
justify-content: space-around;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
padding: 8px 15px;
}
nav a:hover {
background-color: #575757;
border-radius: 5px;
}
.container {
max-width: 900px;
margin: 20px auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.profile-section {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.profile-section img {
width: 80px;
height: 80px;
border-radius: 50%;
margin-right: 20px;
}
.profile-section .info {
font-size: 18px;
}
.settings-group {
margin-top: 20px;
}
.settings-group h2 {
font-size: 20px;
margin-bottom: 10px;
border-bottom: 2px solid #e60012;
display: inline-block;
}
.settings-item {
margin: 10px 0;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #f9f9f9;
}
.settings-item:hover {
background-color: #f1f1f1;
}
.settings-item a {
color: #e60012;
text-decoration: none;
}
.settings-item a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: white;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Nintendo Account Settings</h1>
</header>
<nav>
<a href="#profile">Profile</a>
<a href="#security">Security</a>
<a href="#preferences">Preferences</a>
<a href="#logout">Log Out</a>
</nav>
<div class="container">
<section id="profile" class="profile-section">
<img src="profile-placeholder.png" alt="Profile Picture">
<div class="info">
<h2>John Doe</h2>
<p>Email: johndoe@example.com</p>
</div>
</section>
<div class="settings-group" id="security">
<h2>Security</h2>
<div class="settings-item">
<p><strong>Password:</strong> ********</p>
<a href="#">Change Password</a>
</div>
<div class="settings-item">
<p><strong>2-Step Verification:</strong> Enabled</p>
<a href="#">Manage Settings</a>
</div>
</div>
<div class="settings-group" id="preferences">
<h2>Preferences</h2>
<div class="settings-item">
<p><strong>Language:</strong> English</p>
<a href="#">Change Language</a>
</div>
<div class="settings-item">
<p><strong>Region:</strong> United States</p>
<a href="#">Change Region</a>
</div>
</div>
</div>
<footer>
<p>© 2024 Nintendo. All rights reserved.</p>
</footer>
</body>
</html>