Skip to content

Commit dec1234

Browse files
Loading base font-end structure and config.php file.
1 parent 76fb9b0 commit dec1234

File tree

6 files changed

+61
-0
lines changed

6 files changed

+61
-0
lines changed

config.php

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
# Connection to the world database (address, username, password, database)
4+
$db = new mysqli("localhost","root","password","world");
5+
6+
if (mysqli_connect_error())
7+
die('Connect Error (' . mysqli_connect_errno() . ') '
8+
. mysqli_connect_error());
9+
10+
?>

css/bootstrap.min.css

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/style.css

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.container {
2+
max-width: 900px;*/
3+
}

img/preview.png

40.7 KB
Loading

img/trinitycore.png

10.6 KB
Loading

index.php

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php
2+
require_once("config.php");
3+
?>
4+
5+
<!DOCTYPE html>
6+
<html lang="en">
7+
<head>
8+
<meta charset="utf-8">
9+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
10+
<meta name="viewport" content="width=device-width, initial-scale=1">
11+
<meta name="description" content="Quest Tracker">
12+
<meta name="author" content="ShinDarth">
13+
<title>TC Quest Tracker</title>
14+
15+
<link href="css/bootstrap.min.css" rel="stylesheet">
16+
<link href="css/style.css" rel="stylesheet">
17+
18+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
19+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
20+
<!--[if lt IE 9]>
21+
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
22+
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
23+
<![endif]-->
24+
</head>
25+
<body>
26+
<div class="container">
27+
<p class="h2 text-center"><img src="img/trinitycore.png" alt="TrinityCore">TrinityCore Quest Tracker</p>
28+
<hr>
29+
<br>
30+
<?php
31+
32+
?>
33+
<hr>
34+
<p class="h4 text-center">Coded by <a href="http://www.github.com/ShinDarth">ShinDarth</a>&nbsp;<iframe style="vertical-align: middle;" src="http://ghbtns.com/github-btn.html?user=ShinDarth&repo=TC-Quest-Tracker&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe></p>
35+
<a href="https://github.com/ShinDarth/TC-Quest-Tracker"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
36+
</div>
37+
38+
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
39+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
40+
<!-- Include all compiled plugins (below), or include individual files as needed -->
41+
<script src="js/bootstrap.min.js"></script>
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)