-
Notifications
You must be signed in to change notification settings - Fork 0
/
resetPassword.html
113 lines (92 loc) · 2.97 KB
/
resetPassword.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
<!DOCTYPE html>
<html>
<head>
<title>Reset Password</title>
<meta charset='utf-8'>
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: 'Roboto', sans-serif;
}
form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.hlinput {
border: solid 3px rgb(221, 15, 59);
padding: 5%;
border-radius: 10px;
width: 90%;
font-size: 2em;
}
.hltextfield {
background-image: linear-gradient(to right, rgb(221, 15, 59), rgb(248, 102, 34));
margin-top: 5%;
border-radius: 5px 5px 0px 0px;
padding-bottom: 3px;
text-align: center;
margin-bottom: 5%;
width: 100%;
}
.hlinput:focus {
outline: none;
}
button {
margin-top: 5%;
background-image: linear-gradient(to right, rgb(221, 15, 59), rgb(248, 102, 34));
border: none;
width: 100%;
color: white;
padding: 1em;
border-radius: 100px;
transition: 0.3s;
font-size: 2em;
}
button:hover {
color: rgb(240, 240, 240);
cursor: pointer;
}
h1 {
font-size: 70px;
line-height: 0px;
}
form {
width: 60%;
}
p {
font-size: 3em;
text-align: center;
}
@media only screen and (min-device-width: 767px) {
h1 {
font-size: 2em;
}
p {
font-size: 1em;
}
.hlinput {
font-size: 1em;
}
button {
font-size: 1em;
}
}
</style>
</head>
<body>
<img src="https://gethighlow.com/assets/Logo-light.png" width="30%">
<h1>Reset Password</h1>
<p>Please enter a new password for your High/Low account</p>
<form method="POST">
<input name="password" placeholder="Password" type="password" class="hlinput"><br>
<input name="confirmpassword" placeholder="Confirm Password" type="password" class="hlinput"><br>
<button type="submit">Submit</button>
</form>
</body>
</html>