Skip to content

Commit

Permalink
update readme, tweak formatting, and rearrange js
Browse files Browse the repository at this point in the history
This commit updated the Readme to a more 'complete' version. There are some changes to the formatting, but nothing major. The javascript files have all been moved to a new js folder.
  • Loading branch information
eduxstad committed Mar 29, 2018
1 parent 53a5576 commit 15b60a3
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 11 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# core
A project to redesign the Eden Prairie High School's CORE page.
# Core
### A redesign of Eden Prairie High School's Core
![Login Page](/img/login.png)
This redesign of Core fixes the old, ugly, default Core page and replaces it with a pretty and modern look. The login page at https://ephs.github.io/core is fully functional, but due to the limitations of cross site scripting will log you in to the deafult website. The landing page mockup is only a demo. You can check it out [here](https://ephs.github.io/core/landing.html).
![Landing Page](/img/landing.png)

Erik Duxstad (@eduxstad) and Avery Bartnik (@Jythonscript) created this prototype.

The original can be found [here](https://edenprairie_students.na.rapidbiz.com/).
13 changes: 11 additions & 2 deletions css/skeleton.css
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,12 @@ html {
background-color: #828282;
}

.odd {
background-color: #8a8a8a8a;
.class-row.odd {
background-color: #bfbfbf80;
}

.class-row:hover {
background-color: white;
}

.text {
Expand Down Expand Up @@ -162,6 +166,7 @@ html {
border-top-width: 0px;
border-right-width: 0px;
cursor: pointer;
background-color: #68686880;
}

.two.columns.end {
Expand Down Expand Up @@ -207,6 +212,10 @@ html {
margin: 0px;
}

.signup {
padding: 10px;
}

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
Expand Down
Binary file added img/landing.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 img/login.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<!-- Script
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="login.js"></script>
<script src="js/login.js"></script>

</head>
<body>
Expand All @@ -40,7 +40,7 @@
<div class="six columns" id="login-window">
<img class="logo-image" src="img/eplogo.png">
<h4>Core Login</h4>
<p id="login-message">Login to CORE with your Student ID and Password</p>
<p id="login-message">Login to Core with your Student ID and Password</p>
<form name="school" method="post" id="login-form">
<label for="idInput">Student ID</label>
<input placeholder="Student ID" id="idInput" type="text" name="username">
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 4 additions & 5 deletions landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,11 @@
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="img/eplogo.png">
<script src="landing.js"></script>



<!-- Script
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="date.js"></script>
<script src="js/date.js"></script>
<script src="js/landing.js"></script>

</head>
<body onload="nextCoreDate()">
Expand Down Expand Up @@ -83,7 +82,7 @@ <h5 class="title-text">Core Date</h5>
<h5 class="title-text">Sign Up for Classes</h5>
</div>
<div class="window">
<div class="text">
<div class="text signup">
<!-- Classes Signup Title Row
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="row" id="class-row-title">
Expand Down

0 comments on commit 15b60a3

Please sign in to comment.