-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
68 lines (64 loc) · 1.67 KB
/
profile.html
File metadata and controls
68 lines (64 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register</title>
<style>
body {background: #ececec;}
h1, h2, h3, h4, h5 {
border-bottom: 1px solid #ccc;
color: #3F51B5;
padding-bottom: 8px
}
.container {
margin: auto;
width: 350px;
text-align: center;
}
.listFlex {display: flex; justify-content: center;}
img {
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<h1><?php echo "$_POST['name']";?></h1>
<h3>Profile</h3>
<a href="https://imgbb.com/"><img src="https://i.ibb.co/pdJfzx9/profile-picture.jpg" alt="profile-picture" border="0" /></a>
<h4>About Me</h4>
<p>Hi, I'm <?php echo " $_POST['name']";?>, I have a huge passion for working in NGO's to help the needy.</p>
<h2>Donations till date</h2>
<?php
$name=$_POST['name'];
$email=$_POST['email'];
$passwd=$_POST['password'];
$phone=$_POST['phone'];
$photo=$_POST['files'];
$address=$_POST['address'];
?>
<!--
<table style="width:100%">
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone number</th>
<th>photo</th>
<th>address</th>
</tr>
<tr>
<td><?php echo $name; ?></td>
<td><?php echo $email; ?></td>
<td><?php echo $passwd; ?></td>
<td><?php echo $phone; ?></td>
<td><?php echo $photo; ?></td>
<td><?php echo $address; ?></td>
</tr>
</table>
-->
<h4>Social Media</h4>
Catch me on Twitter - <a href="https://twitter.com/DanEnglishby">@DanEnglishby</a>
</div>
</body>
</html>