-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (31 loc) · 1.11 KB
/
index.php
File metadata and controls
37 lines (31 loc) · 1.11 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
<!doctype html>
<html>
<head>
<title>Ping a website</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"> <!-- load bootstrap via CDN -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> <!-- load jquery via CDN -->
<script src="magic.js"></script> <!-- load our javascript file -->
</head>
<body>
<div class="col-sm-6 col-sm-offset-3">
<h1>Ping a website</h1>
<!-- OUR FORM -->
<form action="process.php" method="POST">
<!-- NAME -->
<div id="name-group" class="form-group">
<label for="name">Hostname</label>
<input type="text" class="form-control" name="name" placeholder="Enter hostname">
<!-- errors will go here -->
</div>
<!-- PING -->
<div id="ping-group" class="form-group">
<label for="name">No. of Packets</label>
<input type="text" class="form-control" name="packets" placeholder="How Many times you want to ping?">
<!-- errors will go here -->
</div>
<button type="submit" class="btn btn-success">Ping <span class="fa fa-arrow-right"></span></button>
<br />
</form>
</div>
</body>
</html>