-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaccountSetting.php
27 lines (25 loc) · 1013 Bytes
/
accountSetting.php
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
<?php include 'include/head.php';?>
<?php include 'include/nav.php';?>
<div class="text-center container">
<?php echo $notice ?>
<div class="columns">
<div class="column col-3"></div>
<div class="column col-6">
<h4>Login Setting</h4><hr>
<form method="POST">
<div class="form-group">
<label for="some" class="col-form-label">Email</label>
<input type="email" name="email" class="form-control" value="<?php echo $user['email'] ?>" id="some" required>
</div>
<div class="form-group">
<label for="some" class="col-form-label">Password</label>
<input type="password" name="password" value="<?php echo $user['password'] ?>" class="form-control" id="some" required>
</div>
<div class="center">
<button class="btn btn-primary btn-lg btn-block" name="saveSetting">Save Setting</button>
</div>
</form>
</div>
</div>
</div>
<?php include 'include/footer.php';?>