-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate_info.php
More file actions
98 lines (41 loc) · 1.65 KB
/
update_info.php
File metadata and controls
98 lines (41 loc) · 1.65 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
$ac=$_GET['ac'];
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="jumbotron" style ="background:url('images/9.jpg') no-repeat;background-size:cover;height: 250px;">
</div>
<div class ="container" style ="margin-top:20px;margin-left: 200px;">
<div class="row">
<div class="col-md-10">
<div class="card">
<div class="card-body" >
<img src="images/1.png" class ="card-img-top" style="width:100px;height: 80px;"><hr>
</div>
<div class ="col-md-4">
<div class="list-group">
<a href="" class="list-group-item active" style="background-color: #3498DB ;color: #ffffff;"border-color:#33D1FF>Update_info</a>
<?php
echo "<a href='email.php?ac=$ac' class='list-group-item'>E-mail_Update</a>";
?>
<?php
echo "<a href='contact.php?ac=$ac' class='list-group-item'>Conatact_Update</a>";
?>
<?php
echo "<a href='password.php?ac=$ac' class='list-group-item'>Password_Update</a>";
?>
<a href="index.php" class="list-group-item ">SignOut</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>