-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
72 lines (62 loc) · 3.16 KB
/
index.php
File metadata and controls
72 lines (62 loc) · 3.16 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
<!doctype html>
<html lang="en">
<head>
<title>ISPWE Hosting</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="container">
<header class="header clearfix">
<h3 class="text-muted">ISPWE Hosting</h3>
</header>
<main role="main">
<div class="jumbotron">
<h1 class="display-3">Free Hosting</h1>
<p class="lead">It can't get any easier than this, just pick an available domain name, click Register and we will set up everything for you in a blink of an eye.</p>
<div class="row">
<div class="col-md-6">
<form method="post" action="./submit.php">
<div class="input-group">
<input name="domain_name" type="text" class="form-control" placeholder="Domain name" aria-label="Domain name">
<span class="input-group-btn">
<input class="btn btn-success" type="submit" value="Register!" />
</span>
</div>
<small id="emailHelp" class="form-text text-muted">Alphanumeric characters allowed, special letters and other symbols will be removed.</small>
</form>
</div>
</div>
</div>
<div class="row marketing">
<div class="col-lg-6">
<h4>Blazing fast</h4>
<p>Or atleast as fast as PHP can go... sooo maybe not that fast, but shhh, don't tell the PHP devs or they will write another blog about it.</p>
<h4>Reliable</h4>
<p>It's school hardware, what would you expect?</p>
<h4>Secure</h4>
<p>Probably as secure as your gardens back entrance.</p>
</div>
<div class="col-lg-6">
<h4>Tough</h4>
<p>Only a god of thunder can take us out... or when the janitor stumbles over the power cable.</p>
<h4>Legal</h4>
<p>Don't take my word for it.</p>
</div>
</div>
</main>
<footer class="footer">
<p>© ISPWE 2018</p>
</footer>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
</body>
</html>