-
Notifications
You must be signed in to change notification settings - Fork 0
/
thank-you.html
78 lines (66 loc) · 3.59 KB
/
thank-you.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank you - Task Manager</title>
<!-- meta tags for SEO
-->
<meta name="keywords" content="html, css, javascripts, task manager " />
<meta name="author" content="Eshvar Prakash">
<meta name="copyright" content="Eshvar Prakash">
<meta name="robots" content="index, follow" />
<meta name="msapplication-TileColor" content="#161616">
<!-- mete tag for theme-color -->
<meta name="theme-color" content="#161616" />
<!-- //Fontsawesome icons cdn -->
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css">
<!-- // Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- //Boostrap js bundle -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<!-- //Jquery CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- custiome css -->
<link rel="stylesheet" href="assests/css/style.css">
</head>
<body id="create-page" class="d-flex justify-content-center">
<div class="page-container">
<main class="main-content">
<div class="container">
<div class="row">
<div class="col-md-12 col-md-2 col-xl ">
<div class="card">
<div class="card-container w-100 h-100 d-flex flex-colum flex-column justify-content-center align-items-center ">
<div class="card-header mb-3 border-bottom-0 bg-white ">
<h1 class="text-center fw-bolder fs-2">Thank you</h1>
</div>
<div class="card-body">
<form action="#" method="POST" class="d-flex justify-content-between align-items-center flex-column gap-5">
<div class="profile-photo-name-container d-flex flex-column align-items-center gap-4">
<div class="form-group">
<p class="success-descriotion">
<bold>Eshvar</bold>, you profile successfully created.
</p>
</div>
</div>
<div class="form-group d-flex justify-content-center gap-4 ">
<div class="individual-btn-container">
<button type=" submit" class="btn btn-primary btn-block">Go to DASHBOARD</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</body>
</html>