-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprofile.php
More file actions
30 lines (26 loc) · 1 KB
/
Copy pathprofile.php
File metadata and controls
30 lines (26 loc) · 1 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
<?php include 'include/head.php';?>
<?php include 'include/nav.php';?>
<div class="container content2">
<div class="text-center">
<?php echo $notice ?>
<div class="columns">
<div class="column col-3"></div>
<div class="column col-6">
<h4>Profile Setting</h4><hr>
<form method="POST">
<div class="form-group">
<label for="some" class="col-form-label">Name</label>
<input type="text" name="name" class="form-control" value="<?php echo $user['name'] ?>" id="some" required>
</div>
<div class="form-group">
<label for="some" class="col-form-label">Contact</label>
<input type="text" name="number" value="<?php echo $user['number'] ?>" 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';?>