-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
34 lines (27 loc) · 822 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Basecamp Tool</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="center-div">
<img src="http://pccrovers.com/wp-content/uploads/2016/09/Logo_vertical-centered-100-100.jpg?x72190"
id="logo"
/>
<div id="white-box">
<p>Welcome to the Crew Basecamp Tool!</p>
<p>Simply click below to log in to your Basecamp account to access the tool.</p>
<div id="button-div">
<a href="http://www.pccrovers.com">
<button type="button" class="btn btn-primary">Take Me Back</button>
</a>
<a href="events.php">
<button type="button" class="btn btn-primary">Log In</button>
</a>
</div>
</div>
</div>
</body>
</html>