This repository was archived by the owner on Apr 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogout.html
More file actions
51 lines (45 loc) · 1.57 KB
/
logout.html
File metadata and controls
51 lines (45 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>JobRAID by Helian</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="res/css/style.css">
</head>
<body>
<div class="video-bg">
<video width="320" height="240" autoplay loop muted>
<source src="res/video/bg2.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="dark-light">
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z" />
</svg>
</div>
<div class="app"><!-- App started -->
<div class="header"><!-- header started -->
<div class="menu-circle"></div>
<div>
<h1 style="color:white; margin-left: 220px;">Logout Success</h1>
</div>
</div><!--header closed-->
<div class="wrapper"><!-- Wrapper started -->
<div class="main-container"><!-- Main container starts -->
<div class="content-wrapper" style="background-color: rgba(0,0,0,0);">
<div>
<button id="home" class="content-button" style="padding: 20px;margin-left:500px ;margin-top: 30px;">
Go Home
</button>
</div>
</div>
</div><!-- Main container ends -->
</div><!-- Wrapper ends -->
</div><!-- App ends -->
<div class="overlay-app"></div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="res/script/script.js"></script>
</body>
</html>