-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedits.php
More file actions
56 lines (51 loc) · 1.96 KB
/
edits.php
File metadata and controls
56 lines (51 loc) · 1.96 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
<?php include("header.php"); ?>
<?php
session_start();
?>
<div class="container-fluid main-home">
<div class="row toprow">
<div class="container main-container">
<div class="row">
<?php include("homeheader.php"); ?>
</div>
</div>
</div>
<div class="container main-body">
<div class="row">
<div class="col-md-6 nopadding temp-account col-centered">
<form id="Uploadform" class="edit-post" enctype="multipart/form-data" method="Post">
<input type="hidden" id="sessionvar" name="sessionvar" value="<?php echo $_SESSION["userid"]; ?>">
<table width="100%">
<tbody>
<tr>
<td>
<ul class="page-edit">
<a href="editprofile.php?userid=<?php echo $_SESSION["userid"]; ?>"><li><i class="fa fa-user-plus" style="font-size:48px;color:lightblue"></i> Edit Profile</li></a>
<a href="editpost.php?userid=<?php echo $_SESSION["userid"]; ?>"><li><i class="fa fa-edit" style="font-size:48px;color:orange"></i> Edit Post</li></a>
</ul>
</td>
</tr>
<tr>
<td></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
</div>
<footer class="page-footer bottompage">
<div class="container nopadding"><label class="footerlabel">
This website was developed by <a href="https://www.linkedin.com/in/jagbadu/" target="_blank">Ose Agbadu</a> for the sole purpose of practice and demonstration of his awesome programming skills</label>
</div>
</footer>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/uploads.js"></script>
<script src="js/scripts.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
</body>
</html>