forked from tsdevopsacp/sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.4 KB
/
index.html
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
<head>
<title>TS DevOps LAMP Project</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="jumbotron text-center">
<h1>My PHP Website</h1>
<p>This is the landing page for my test PHP website!</p>
</div>
<div class="container">
<h2>What to test next?</h2>
<div class="container">
<div class="row">
<div class="col-sm-6">
<h3>Open <a href="/info.php" target="_blank">/info.php</a></h3>
<p>If PHP is running successfully on your container, you will be able to see all details of your PHP server displayed here.</p>
</div>
<div class="col-sm-6">
<h3>Open <a href="/todo.php" target="_blank">/todo.php</a></h3>
<p>If MySQL DB server with the correct data is running successfully and your PHP app is able to connect to it, you should be able to view a to-do list of important items here.</p>
</div>
</div>
</div>
</div>
</body>
</html>