Skip to content

Commit

Permalink
V 1.0
Browse files Browse the repository at this point in the history
Restarting project from scratch
  • Loading branch information
xCloudx8 committed Aug 5, 2017
1 parent e2eb1de commit fdb07b4
Show file tree
Hide file tree
Showing 20 changed files with 735 additions and 645 deletions.
50 changes: 50 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<html>

<head>
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.indigo-red.min.css" />
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>

<!-- Always shows a header, even in smaller screens. -->
<div class="demo-layout mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header">
<header class="demo-header mdl-layout__header mdl-color--grey-100 mdl-color-text--grey-600">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">About s database</span>
<div class="mdl-layout-spacer"></div>
<div class="mdl-textfield mdl-js-textfield mdl-textfield--expandable">
<label class="mdl-button mdl-js-button mdl-button--icon" for="search">
<i class="material-icons">search</i>
</label>
<div class="mdl-textfield__expandable-holder">
<input class="mdl-textfield__input" type="text" id="search">
<label class="mdl-textfield__label" for="search">Enter your query...</label>
</div>
</div>
<button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon" id="hdrbtn">
<i class="material-icons">more_vert</i>
</button>
<ul class="mdl-menu mdl-js-menu mdl-js-ripple-effect mdl-menu--bottom-right" for="hdrbtn">
<li class="mdl-menu__item">About</li>
<li class="mdl-menu__item">Contact</li>
<li class="mdl-menu__item">Legal information</li>
</ul>
</div>
</header>
<div class="demo-drawer mdl-layout__drawer mdl-color--blue-grey-900 mdl-color-text--blue-grey-50">
<span class="mdl-layout-title"><h6>PersonalGenomics Database</h6></span>
<nav class="demo-navigation mdl-navigation mdl-color--blue-grey-800">
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/index.html">Home</a>
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/insert.php">Insert</a>
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/search.php">Search</a>
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/updates.html">Update</a>
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/faq.html">FAQ</a>
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/about.html">About</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content"> content here</div>
</main>
</div>

</html>
215 changes: 0 additions & 215 deletions css/styles.css

This file was deleted.

15 changes: 15 additions & 0 deletions database.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
$servername = 'localhost';
$username = 'root';
$password = 'mysql';

//Create connection
$con = mysqli_connect($servername, $username, $password);

//Check connection
if($con->connect_error){
die("Connection failed");
}
echo "Connected succesfully";

?>
51 changes: 51 additions & 0 deletions faq.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<html>

<head>
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.indigo-red.min.css" />
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>

<!-- Always shows a header, even in smaller screens. -->
<div class="demo-layout mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header">
<header class="demo-header mdl-layout__header mdl-color--grey-100 mdl-color-text--grey-600">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Frequently asked questions</span>
<div class="mdl-layout-spacer"></div>
<div class="mdl-textfield mdl-js-textfield mdl-textfield--expandable">
<label class="mdl-button mdl-js-button mdl-button--icon" for="search">
<i class="material-icons">search</i>
</label>
<div class="mdl-textfield__expandable-holder">
<input class="mdl-textfield__input" type="text" id="search">
<label class="mdl-textfield__label" for="search">Enter your query...</label>
</div>
</div>
<button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon" id="hdrbtn">
<i class="material-icons">more_vert</i>
</button>
<ul class="mdl-menu mdl-js-menu mdl-js-ripple-effect mdl-menu--bottom-right" for="hdrbtn">
<li class="mdl-menu__item">About</li>
<li class="mdl-menu__item">Contact</li>
<li class="mdl-menu__item">Legal information</li>
</ul>
</div>
</header>
<div class="demo-drawer mdl-layout__drawer mdl-color--blue-grey-900 mdl-color-text--blue-grey-50">
<span class="mdl-layout-title"><h6> Database</h6></span>
<nav class="demo-navigation mdl-navigation mdl-color--blue-grey-800">
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/index.html">Home</a>
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/insert.php">Insert</a>
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/search.php">Search</a>
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/updates.html">Update</a>
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/faq.html">FAQ</a>
<a class="mdl-navigation__link" href="http://127.0.0.1/Db_V2/about.html">About</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content"> content here</div>
</main>
</div>


</html>
Binary file removed images/android-desktop.png
Binary file not shown.
Binary file added images/code-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/dna-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/dna.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/dog.png
Binary file not shown.
Binary file removed images/favicon.png
Binary file not shown.
Binary file removed images/ios-desktop.png
Binary file not shown.
Binary file removed images/user.jpg
Binary file not shown.
Loading

0 comments on commit fdb07b4

Please sign in to comment.