32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" style="display: none;">
|
||
|
<head>
|
||
|
<title>Settings</title>
|
||
|
<meta charset="UTF-8"/>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||
|
<link rel="stylesheet" href="/kt-static/css/styles.css">
|
||
|
</head>
|
||
|
<body style="text-align: center;">
|
||
|
<div class="hover">
|
||
|
<h1>Settings</h1>
|
||
|
<p>Welcome to the settings page!</p>
|
||
|
<button class="button" id="showLoginCode">Show login code</button>
|
||
|
<button class="button" id="resetLoginCode">Reset login code</button>
|
||
|
<button class="button" id="deleteEmail">Delete email</button>
|
||
|
<div class="loginCodeDisplay" id="loginCodeDisplay">
|
||
|
<h1>Login code</h1>
|
||
|
<p>Your login code is:</p>
|
||
|
<span id="loginCode">Loading...</span>
|
||
|
<div class="buttonContainer">
|
||
|
<button class="button" id="copyLoginCode">Copy login code</button>
|
||
|
<button class="button" id="closeLoginCode">Close</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id="swipe" class="swipe"></div>
|
||
|
<div id="swipe-out" class="swipe-out"></div>
|
||
|
</div>
|
||
|
<script src="/kt-static/js/transition.js"></script>
|
||
|
<script src="/kt-static/js/settings.js"></script>
|
||
|
</body>
|
||
|
</html>
|