-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoup-stock-installing.php
59 lines (54 loc) · 1.45 KB
/
soup-stock-installing.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
<?php
/**
* Created by PhpStorm.
* User: francisw
* Date: 13/10/2017
* Time: 12:25
*/
// Very basic, as Wordpress is being reinstalled while this is showing, so cannot rely on anything Pressy
?><!DOCTYPE html>
<!--[if IE 8]>
<html xmlns="http://www.w3.org/1999/xhtml" class="ie8 wp-toolbar" lang="en-US">
<![endif]-->
<!--[if !(IE 8) ]><!-->
<html xmlns="http://www.w3.org/1999/xhtml" class="wp-toolbar" lang="en-US">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Installing Vacation Soup Stock</title>
<style type="text/css">
body, html {
height: 100%;
}
.bg {
/* The image used */
background-image: url("https://launch.vacationsoup.com/wp-content/uploads/2017/07/bigstock-177198292.jpg");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
font-family: "Open Sans", sans-serif;
}
#content {
width: 60%;
margin: 20% 0 0 20%;
text-align: center;
}
#content IMG {
display: block;
min-width: 10%;
margin: auto;
fill: #8888ff;
}
</style>
</head>
<body class="bg">
<div id="content">
<h1>Installing Vacation Soup Stock</h1>
<img src="img/loading.svg" />
<h3>You will be redirected to your login screen when this is complete.</h3>
</div>
</body>
</html>