This repository has been archived by the owner on Nov 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adnasa.php
92 lines (77 loc) · 1.65 KB
/
adnasa.php
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
<?php
include ("connect.php");
include ("sessions_admin.php");
$msg = "";
?>
<html>
<head>
<title> welcome to nasa </title>
<style>
body {
background-image:url("75.jpg");
background-repeat: no-repeat;
}
.button1 {
float: right;
color: black;
padding: 5px 10px;
border-radius: 12px;
margin-top: 1ex;
margin-right: 20px;
font-size: 15px;
cursor: pointer;
background-color: #ccc;
border: 2px solid black
}
.button {
border-radius: 4px;
background-color: #f4511e;
border: none;
color: #FFFFFF;
ext-align: center;
font-size: 28px;
padding: 20px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
</style>
</head>
<body bgcolor="black" text="yellow">
<a href="logout.php" class="button1"> Logout</a>
<p> <h1 align=center> Welcome to<br> National Aeronautics and Space Administration </h1> </p> <br>
<meta name="viewport" content="width=device-width, initial-scale=1">
<p align=center>
<a href="adnasahis.php" button class="button"> <span> History </span></button>
<a href="adnsms.php" button class="button"> <span> Missions </span></button> </a> </p>
<p align=center> <img src="nasamain.png" height="60%" width="40%"> </p>
<script>
function goBack() {
window.history.back();
}
</script>
<button onclick="goBack()">Go Back</button>
</body>
</html>