-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.php
More file actions
25 lines (25 loc) · 804 Bytes
/
welcome.php
File metadata and controls
25 lines (25 loc) · 804 Bytes
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
<?php include('loginvalidate.php')?>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
</head>
<body>
<div class="card-header">
Welcome, <?php echo $loginemail ?>!
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<div class="row">
<div class="col-md-6">Name</div>
<div class="col-md-6"><?php echo $rows["firstname"]. " " . $rows["lastname"]?></div>
</div>
<div class="row">
<div class="col-md-6">Gender</div>
<div class="col-md-6">Gender Value</div>
</div>
</div>
</div>
</div>
</body>
</html>