Added content to landing page and team page.

The secure website section needs to be reformatted
so that it has matching style along with the rest of the website.
This commit is contained in:
Sean Joseph 2017-10-29 22:43:40 -04:00
parent a491c4b921
commit 53d2ff7547
6 changed files with 116 additions and 34 deletions

View File

@ -13,32 +13,42 @@ class AboutView extends View
public function page()
{
$body = <<<HTML
<h1>Roster:</h1>
<div class="team">
<div class="member">
<h2>Project Manager - James</h2>
<h1>Roster:</h1>
<div class="card">
<h2>James Murray - Project Manager</h2>
<img src="assets/james_murray.jpg" height="1365" width="1372" alt="James Murray">
<p>
blurb.
A senior at Michigan State University majoring in Computer Science,
James has a strong love for software development,
especially the creation of desktop applications.
</p> </div>
<div class="member">
<h2>Artifacts Manager - Sean</h2>
<div class="card">
<h2>Sean Joseph - Artifacts Manager</h2>
<img src="assets/sean_joseph.jpg" height="960" width="952" alt="Sean Joseph">
<p>
blurb.
Senior Computer Science Major at Michigan State University.
I enjoy long walks on the beach and casual conversation about
vimrc files. <a href="https://www.egr.msu.edu/~joseph62">Homepage Here</a>
</p> </div>
<div class="member">
<h2>Project Facilitator - Stephen</h2>
<div class="card">
<h2>Stephen Alfa - Project Facilitator</h2>
<img src="assets/stephen_alfa.jpg" width="960" height="959" alt="Stephen Alfa">
<p> </p> </div>
<div class="card">
<h2>Logan Arent - Safety/Security Engineer</h2>
<img src="assets/logan_arent.jpg" height="696" width="696" alt="Logan Arent">
<p>
blurb.
Senior in Computer Science at Michigan State University.
Working to gain as much knowledge as possible about software development.
</p> </div>
<div class="member">
<h2>Safety/Security Engineer - Logan</h2>
<div class="card">
<h2>Colin Coppersmith - Domain Expert/Customer Liaison</h2>
<img src="assets/colin_coppersmith.jpg" height="999" width="693" alt="Colin Coppersmith">
<p>
blurb.
</p> </div>
<div class="member">
<h2>Domain Expert/Customer Liaison - Colin</h2>
<p>
blurb.
20 years old, from Clarkston, MI.
Graduating in May of 2018 with a B.S. in Computer Science.
Currently in a web development internship for Jackson National Life supporting the Mobile Technologies department.
</p> </div>
</div>
HTML;

View File

@ -11,8 +11,36 @@ class LandingView extends View
public function page()
{
$body = <<<HTML
<h1>Paint Defect Reporting!</h1>
<p>Find those defects, boys!</p>
<div class="card">
<h2>Project Description</h2>
<p>
Our project is to automate the recording of paint defects and the creation of reports.
Analysts will use the system instead of paper diagrams to record paint defects.
It will automatically create daily reports and allow for easy creation of the reports for larger time periods.
The system will be safe, reliable, and secure.
It will be used at the following GM plants: Lansing Delta Township, Lansing Grand River, and Lake Orion Assembly.
</p>
</div>
<div class="card">
<h2>Project Background</h2>
<p>
General Motors automotive plants check for paint defects at points along the assembly line so that the defects can be fixed and so sources of defects can be found and eliminated.
Currently, analysts examine the cars and record defects on paper diagrams.
Later the analyst will compile the data and create daily reports and summary reports for larger time periods.
</p>
</div>
<div class="card">
<h2>Other Resources</h2>
<ul>
<li><a href="https://cse.msu.edu/~cse435/Projects/F2017/Project-Description-Assignment.pdf">Project Specification</a></li>
<li><a href=".">Software Reqirement Specs</a></li>
<li><a href=".">Prototype</a></li>
<li><a href=".">Bibliography</a></li>
</ul>
</div>
HTML;
return $body;
}

View File

@ -1,9 +1,7 @@
<?php
/**
* Created by PhpStorm.
* User: sean
* Date: 10/29/17
* Time: 6:56 PM
* This file should be included for any entry point.
* Constants and session stuff will be saved here.
*/
session_start();

View File

@ -6,6 +6,7 @@ require_once "../lib/prelude.inc.php";
<head>
<meta charset="UTF-8">
<title>Secure Pages Login</title>
<link href="../style/default.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>Secure Pages Login</h1>

View File

@ -6,6 +6,7 @@ require_once "../lib/protected.inc.php";
<html>
<head>
<meta charset="UTF-8">
<link href="../style/default.css" rel="stylesheet" type="text/css">
<title>Meeting Minutes</title>
</head>
<body>

View File

@ -21,13 +21,20 @@ time, mark, audio, video
background:transparent;
}
/*
body {
background : lightgrey;
background-image: url("../assets/redcedarbackground.jpg");
background-position: center;
background-size: cover;
}
*/
body{
background: darkgreen;
}
header {
padding-top: 1em;
background : white;
background : rgba(255,255,255,1);
text-align: center;
line-height: 3em;
}
@ -36,20 +43,57 @@ header h1 {
font-size : 2em;
}
nav a{
color : darkgray;
a{
color : rgba(100,100,100,1);
font-style: normal;
text-decoration : none;
background : inherit;
}
nav a:hover{
color : black;
background: lightgrey;
font-size:1.1em;
a:hover{
color : rgba(0,0,0,1);
}
div.card{
border:thick black;
display:inline-block;
text-align: left;
margin: 1em auto;
border: medium solid black;
border-radius: 10px;
/*height: 550px;*/
width: 700px;
background: rgba(255,255,255,1);
}
div.card h2{
margin-top: 0.75em;
margin-bottom: 0.75em;
text-align: center;
}
div.card img{
height:400px;
width:300px;
border:thick solid black;
display:block;
padding: 5px;
margin: auto;
}
div.card p{
padding: 0 4em;
margin: 0.75em 0;
}
div.card ul{
margin-left: 75px;
margin-bottom: 25px;
display: block;
}
div.team h1{
font-size: 3em;
text-align: center;
margin: 0.75em 0;
color: white;
}