-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
27 lines (27 loc) · 1.29 KB
/
success.html
File metadata and controls
27 lines (27 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome | Safe Haven</title>
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="auth-container-wrapper">
<div class="auth-container success-container">
<div class="success-icon">
<svg xmlns="http://www.w3.org/2000/svg" height="48px" viewBox="0 0 24 24" width="48px" fill="#34A853"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>
</div>
<h2>Welcome to Safe Haven</h2>
<p>You have successfully logged in. You can now access personalized resources and support with full privacy.</p>
<div class="success-actions">
<a href="index.html" class="btn btn-primary">Go to Homepage</a>
<a href="counsellor.html" class="btn btn-secondary">Book a Session</a>
<a href="legal.html" class="btn btn-secondary">Review Legal Aid</a>
</div>
</div>
</div>
</body>
</html>