-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
60 lines (47 loc) · 1.67 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/styles.css">
<title>Profile</title>
<link rel="icon" type="image/x-icon" href="assets/img/web-icon.png" style="background-color: black;">
<link rel="stylesheet" href=
"https://unpkg.com/[email protected]/build/pure-min.css"
integrity=
"sha384-Uu6IeWbM+gzNVXJcM9XV3SohHtmWE+3VGi496jvgX1jyvDTXfdK+rfZc8C1Aehk5"
crossorigin="anonymous">
<script>
window.addEventListener("online", function() {
});
window.addEventListener("offline", function() {
window.location.href = "no-internet.html";
});
</script>
<style>
.test {
position: fixed;
justify-content: right;
align-items: center;
display: flex;
top: 20px;
left: 20px;
}
</style>
</head>
<body>
<div class="login">
<img src="assets/img/random1.gif" alt="login image" class="login__img">
<form action="" class="login__form">
<p class="test"><a href="#" style="color: white; width: 5px;" onclick="history.back()">⬅</a></p>
<a href="index.html"><img src="assets/img/web-icon.png" style="position:fixed; top: 20px; right: 20px; width: 30px; height: 30px; text-align: right;"></a>
<h1 class="login__title">Profile</h1>
<div class="login__content">
<div class="login__box">
</div>
</div>
</form>
</div>
</body>
</html>