Skip to content
Permalink
b36e721b7a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
33 lines (29 sloc) 804 Bytes
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Data Modeling Gene Expressions</title>
<link rel="stylesheet" href="./styles/index.css">
<script src="https://kit.fontawesome.com/af3b59249a.js" crossorigin="anonymous"></script>
<script src = "https://code.jquery.com/jquery-3.4.0.min.js"></script>
</head>
<body>
<div class="container">
<!-- <h1>Data Modeling Gene Expressions</h1> -->
<?php
if(isset($_SESSION['email']))
{
require "./components/dashboard.php";
}
else {
require "./components/login.php";
}
?>
</div>
</body>
</html>