-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst.php
More file actions
79 lines (70 loc) · 2.05 KB
/
first.php
File metadata and controls
79 lines (70 loc) · 2.05 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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<style type="text/css">
body{
background-image: url("https://coolbackgrounds.io/images/backgrounds/index/aqua-d9b59c89.png");
background-repeat: no-repeat;
}
.php{
color: white;
font-size: 100px;
margin-left: 30%;
margin-top: 10%;
}
.btn1{
margin: 10px;
padding: 10px 10px;
font-size: 35px;
background-color: green;
border-radius: 30px;
height: 150px;
width: 250px;
color: white;
margin-left: 34%;
}
button{
margin: 10px;
padding: 10px 10px;
font-size: 35px;
background-color: green;
border-radius: 30px;
height: 150px;
width: 250px;
color: white;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse ">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Resume Builder</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="logout.php"><span class="glyphicon glyphicon-log-in"></span> Logout</a></li>
</ul>
</div>
</nav>
<div class="php">
<?php
echo "<p>Welcome {$_SESSION['Name']}!</p>";
?>
</div>
<div class="buttons">
<button onclick="window.location.href='makeResume.php'" class="btn1">Make resume</button>
<button onclick="window.location.href='viewResume.php'">View Resume</button>
</div>
<br>
</body>
</html>