61 lines
2.0 KiB
HTML
61 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Update Info</title>
|
|
<meta name="author" content="Luna">
|
|
<meta name="description" content="Chat Login Change">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="icon" href="/favicon.svg">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Change username/pin/pronouns.</h1>
|
|
<p>(leave field blank if not changing)</p>
|
|
|
|
<div id="box">
|
|
<form autocomplete="off">
|
|
<label for="uname">Current Username:</label><br>
|
|
<input type="text" id="uname" name="uname" required><br>
|
|
|
|
<label for="pin">Current Pin:</label><br>
|
|
<input type="number" id="pin" name="pin" required><br><br>
|
|
|
|
<p>What are you changing?</p>
|
|
|
|
<label for="newuname">New Username:</label><br>
|
|
<input type="text" id="newuname" name="newuname"><br>
|
|
|
|
<label for="newpin">New Pin:</label><br>
|
|
<input type="number" id="newpin" name="newpin"><br><br>
|
|
|
|
<label for="selected">New pronouns:</label><br>
|
|
<select id="selected" name="selected">
|
|
<option value="none"></option>
|
|
<option value="she.her">she/her</option>
|
|
<option value="he.him">he/him</option>
|
|
<option value="they.them">they/them</option>
|
|
<option value="it.its">it/its</option>
|
|
<option value="fae.faer">fae/faer</option>
|
|
</select>
|
|
|
|
<p>Or.</p>
|
|
|
|
<label for="custom">Custom Pronouns:</label><br>
|
|
<input type="text" id="custom" name="custom">
|
|
|
|
<p>Format: pronoun/pronoun</p><br>
|
|
|
|
<input type="submit" value="Change">
|
|
</form>
|
|
</div>
|
|
|
|
<script src="updateinfo.js"></script>
|
|
|
|
<div id="errormessage"></div>
|
|
</body>
|
|
</html>
|