-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.php
More file actions
37 lines (32 loc) · 1.03 KB
/
profile.php
File metadata and controls
37 lines (32 loc) · 1.03 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
<?php
include 'inc/header.php';
Session::checkSession();
?>
<div class="panel panel-default">
<div class="panel-heading">
<h2>User Profile<span class="pull-right"><a class="btn btn-primary" href="index.php">Back</a></span></h2>
</div>
<div class="panel-body">
<div style="max-width:600px; margin: 0 auto">
<form action="" method="POST">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" class="form-control" value="MD.Rasel Hossain">
</div>
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" class="form-control" value="Rasel">
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="text" id="email" name="email" class="form-control" value="Rasel@gmail.com">
</div>
<button type="submit" name="log
" class="btn btn-success">Update</button>
</form>
</div>
</div>
</div>
<?php
include 'inc/footer.php';
?>