23 lines
723 B
HTML
23 lines
723 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en"><head>
|
||
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||
|
<title>Change password</title>
|
||
|
<link rel="stylesheet" href="/static/css/main.css">
|
||
|
<script src="/static/js/main.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="headerbar">
|
||
|
<a class="a" href="/">CTAMail</a>
|
||
|
<a class="a" href="/signup">Sign up</a>
|
||
|
<a class="main a" href="/account">Account</a>
|
||
|
<button class="a right" onclick="toggleDarkMode()">Toggle Theme</button>
|
||
|
</div>
|
||
|
<div class="content">
|
||
|
<h1>Change password</h1>
|
||
|
<input type="password" id="newpass">
|
||
|
<div class=spacer2>
|
||
|
<button class="button" onclick="changepass()">Submit</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body></html>
|