Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/team8/attendance
Browse files Browse the repository at this point in the history
  • Loading branch information
DeckardKane committed Nov 17, 2015
2 parents d45b70d + e07a66b commit d28f745
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -215,3 +215,9 @@ pip-log.txt

#Mr Developer
.mr.developer.cfg

#############
## Other Things
#############

*.sqlite3
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions attendance-website/attendanceapp/static/attendanceapp/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#page-wrap {
width: 800px;
margin: 10 auto;
/* background-image: url(images/circuitBoard.png); */
text-align: center;
}

#header {
/* width: idk man */
height: 500px
border: 5px solid #73AD21
text-align: center;
/* background-image: url(images/roboticsHeader.jpg); */
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{% load staticfiles %}

<link rel="stylesheet" type="text/css" href="{% static 'attendanceapp/style.css' %}" />

<html>
<head>

Expand All @@ -7,16 +11,15 @@

<body>

<div id="container">

<p>
Hi!
</p>
<div id="page-wrap">
<div id="header">
<img src="static/attendanceapp/images/roboticsHeader.jpg" alt="argh"/>
</div>

<form action="{% url 'ScanCard' %}" method="post">
{% csrf_token %}
<input type="text" id="cardBox" name="studentID">
<input type="submit">
<input type="submit" value="Log in/out">
</form>

{{ message }}
Expand Down

0 comments on commit d28f745

Please sign in to comment.