blob: f2402eef02f2bd5132709e2f3f09ec783aa877e1 (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<!DOCTYPE html>
<head>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<script src="main.js" defer></script>
<link rel="icon" href="favicon.svg" type="image/svg">
<title>UPDATE INFO</title>
</head>
<body>
<header>
<a href="user/">
<center class="button navbutton">USER</center>
</a>
<a href="user/transfer/">
<center class="button navbutton">TRANSFER</center>
</a>
<a href="user/update/">
<center class="button navbutton">UPDATE INFO</center>
</a>
<a href="user/#" onclick="logout()">
<center class="button navbutton">LOGOUT</center>
</a>
</header>
<div class="page">
<center>
<h2>UPDATE NAME</h2>
</center>
<hr>
<div class="content">
<form action="javascript:update_name_form()" class="formbox", id="nameform" accept-charset=utf-8>
<label for="name">USERNAME</label>
<input type="text" id="name">
<input type="submit" class="button formbutton" value="UPDATE">
</form>
</div>
</div>
<div class="page">
<center>
<h2>UPDATE PASSWORD</h2>
</center>
<hr>
<div class="content">
<form action="javascript:update_password_form()" class="formbox", id="password_form" accept-charset="utf-8">
<label for="old_password">OLD PASSWORD</label>
<input type="password" id="old_password" minlength="4" maxlength="8" required>
<label for="new_password">NEW PASSWORD</label>
<input type="password" id="new_password" minlength="4" maxlength="8" required>
<input type="submit" class="button formbutton" value="UPDATE">
</form>
</div>
</div>
<div class="page">
<center>
<h2>DELETE</h2>
</center>
<hr>
<div class="content">
<form action="javascript:delete_form()" class="formbox", id="form" accept-charset=utf-8>
<label for="is_sure">ARE YOU SURE?</label>
<select id="is_sure" class="button" required form="form">
<option selected>NO</option>
<option>YES</option>
</select>
<label for="del_password">PASSWORD</label>
<input id="del_password" type="password" required>
<input type="submit" class="button formbutton" value="PERMANENTELY DELETE USER">
</form>
</div>
</div>
<footer>
<center>
<p>POKO</p>
</center>
</footer>
</body>
</html>
|