-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
86 lines (85 loc) · 2.87 KB
/
settings.html
File metadata and controls
86 lines (85 loc) · 2.87 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
<!DOCTYPE html>
<html>
<head>
<title>settings</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body{
color: black;
background: url(images/bg1.jpeg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: sans-serif;
background-size: 100% 100%;
}
.header{
background: #fff;
border-radius: 25px;
padding: 20px;
width: 250px;
height: 420px;
margin: auto;
font-style: oblique;
position: absolute;
top: 50%;
left: 50%;
font-size: 1.0em;
transform: translate(-50%,-50%);
}
.c{
margin-top: 40px;
text-align: center;
}
.c1{
text-align: center;
}
.d{
margin-top: 30px;
text-align: center;
}
.button {
background-color: #3450cf; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
border-radius: 10px;
display: inline-block;
font-size: 16px;
}
.xyz{
content: center;
}
.nav{
text-decoration: none;
text-align: center;
}
.faz{
text-align: center;
text-decoration: none;
}
</style>
</head>
<body>
<div class="header">
<div class="container" >
<h2 class="a"><center>Settings</center></h2>
<center><img class="xyz" src="https://img.icons8.com/?size=1x&id=sWZLEFs9Cy8D&format=png" width="50px" height="50px"></center>
<form action="index.html">
<h3 class="c1">Name: <input type="text" value="Fazil khan"><br></h3>
<h3 class="c1">Email: <input type="text" value="fazil@xyz.com"></h3>
<h3 class="c1">Date-of-Birth: <input type="date"> </h3>
<div class="d">
<button class="button">Save</button><br><br>
<a href="forgotpassword.html" class="faz">Forgot Password ?</a><br><br>
<a href="changepassword.html" class="faz">Change Password</a> 
</div>
</form>
</div>
</div>
</body>
</html>