-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlogout.html
More file actions
133 lines (116 loc) · 3.99 KB
/
logout.html
File metadata and controls
133 lines (116 loc) · 3.99 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Logged Out - MediChain</title>
<link rel="icon" href="assets/favicon.png" type="image/png"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet"/>
<style>
:root {
--primary-color: #2563eb;
--dark-color: #111827;
--text-muted: #6b7280;
--bg-gradient: linear-gradient(145deg, #f9fafb, #e5e7eb);
}
* {
font-family: 'Inter', sans-serif;
}
body {
background: var(--bg-gradient);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.form-container {
max-width: 440px;
width: 100%;
background: white;
border-radius: 20px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
padding: 2.5rem 2rem;
text-align: center;
}
.logo {
width: 72px;
height: 72px;
margin-bottom: 1rem;
}
.brand-name {
font-size: 1.6rem;
font-weight: 600;
color: var(--dark-color);
margin-bottom: 1.5rem;
}
h4 {
font-weight: 600;
color: var(--dark-color);
}
p {
color: var(--text-muted);
font-size: 0.95rem;
margin-bottom: 1.75rem;
}
.btn-primary {
background-color: var(--dark-color);
border-color: var(--dark-color);
font-weight: 500;
padding: 0.75rem 1.25rem;
font-size: 0.95rem;
border-radius: 10px;
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: #333;
transform: translateY(-1.5px);
}
.info-text {
margin-top: 2rem;
font-size: 0.85rem;
color: var(--text-muted);
padding: 0.9rem 1rem;
background: #f3f4f6;
border-radius: 10px;
display: flex;
align-items: flex-start;
gap: 0.5rem;
text-align: left;
}
.info-text svg {
flex-shrink: 0;
margin-top: 2px;
}
@media (max-width: 576px) {
.form-container {
padding: 2rem 1.25rem;
margin: 1rem;
}
}
</style>
</head>
<body>
<div class="form-container">
<img src="assets/favicon-bg.png" alt="Logo" class="logo" />
<div class="brand-name"><a href="index.html" class="text-decoration-none" style="color: #000;">MediChain</a>
</div>
<h4>You have been logged out</h4>
<p>Thank you for using MediChain. We hope to see you again soon!</p>
<a href="auth.html" class="btn btn-primary w-100">Back to Login</a>
<div class="info-text mt-4 d-flex align-items-center">
<svg width="18" height="18" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="8" cy="8" r="7" stroke="#6b7280" stroke-width="1.5" fill="none"/>
<rect x="7.25" y="4" width="1.5" height="5" fill="#6b7280"/>
<circle cx="8" cy="11.25" r="1" fill="#6b7280"/>
</svg>
<div>
If you encounter any issues,
visit our <a href="help-center.html" style="color: #2563eb; text-decoration: underline;">Help Center</a> for FAQs and to contact our support team.
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/js/bootstrap.bundle.min.js"></script>
</body>
</html>