-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfirstrun.html
More file actions
28 lines (26 loc) · 754 Bytes
/
firstrun.html
File metadata and controls
28 lines (26 loc) · 754 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
26
27
28
<!doctype html>
<title>phpHamster</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
<article>
<h1>First run</h1>
<div>
<p>
Hey there!<br>
It looks like you have just downloaded phpHamster. Well done!<br>
Please run 'composer install' under the application's root directory.
</p>
<p>— phpHamster</p>
</div>
</article>
<script>
setTimeout(function() {
location.reload();
}, 5000);
</script>