mirror of
https://github.com/1f349/tulip.git
synced 2024-12-22 16:24:10 +00:00
38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>1f349 ID</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>1f349 ID</h1>
|
|
</header>
|
|
<main>
|
|
<div>Logged in as: {{.User.Name}} ({{.User.Sub}})</div>
|
|
<div>
|
|
<button onclick="location.href='/edit'">Edit Profile</button>
|
|
</div>
|
|
<div>
|
|
<button onclick="location.href='/edit/username'">Change username</button>
|
|
</div>
|
|
<div>
|
|
<button onclick="location.href='/edit/password'">Change password</button>
|
|
</div>
|
|
<div>
|
|
<form method="GET" action="/edit/otp">
|
|
<label> <input type="radio" name="digits" value="6"/> 6 digits </label>
|
|
<label> <input type="radio" name="digits" value="7"/> 7 digits </label>
|
|
<label> <input type="radio" name="digits" value="8"/> 8 digits </label>
|
|
<button type="submit">Change OTP</button>
|
|
</form>
|
|
</div>
|
|
<div>
|
|
<form method="POST" action="/logout">
|
|
<input type="hidden" name="nonce" value="{{.Nonce}}">
|
|
<button type="submit">Log Out</button>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|