-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodify.php
More file actions
39 lines (38 loc) · 1.59 KB
/
modify.php
File metadata and controls
39 lines (38 loc) · 1.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Keeping</title>
<link rel=stylesheet href='modify.css' type='text/css'>
<link rel=stylesheet href='assets\navbar.css' type='text/css'>
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
</head>
<body>
<span id='navbar'>
<?php include 'navbar.php'; ?>
</span>
<form class="modify" method="post" action="check_modify.php" class="modifyForm">
<h2>Modify Member Information</h2>
<h4>Clicking the button below will proceed with the withdrawal from membership.<br> Upon withdrawal, all of your information will be deleted.</h4>
<div class="nicknameForm">
<input type="text" name="new_nickname" class="id" placeholder="New nickname">
</div>
<div class="oldpassForm">
<input type="password" name="old_pw" class="pw" placeholder="Old Password">
</div>
<div class="passForm">
<input type="password" name="new_pw" class="pw" placeholder="New Password">
</div>
<div class="confirmpassForm">
<input type="password" name="new_password_confirm" class="pw" placeholder="Confirm Password">
</div>
<button type="submit" class="btn" onclick="button()">
UNREGISTER
</button>
</form>
</body>
</html>