Skip to content

Commit

Permalink
Merge pull request #134 from mpdavis/random
Browse files Browse the repository at this point in the history
Random stuff
  • Loading branch information
Michael Davis committed May 2, 2014
2 parents d3a0917 + cd9ceb1 commit b52b4c0
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 16 deletions.
34 changes: 18 additions & 16 deletions app/views/users.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</tbody>
</table>

<!-- New User Modal -->

<div id="newUserModal" class="modal fade" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
Expand All @@ -47,30 +47,32 @@
<h4 class="modal-title" id="newUserModalLabel">New User</h4>
</div>
<div class="modal-body">
<form class="simple-form form-group" novalidate>
<label>Username</label>
<input type="text" ng-model="newUser.username" class="form-control"></input>
<label>Password</label>
<input type="password" ng-model="newUser.password" class="form-control"></input>
<label>First Name</label>
<input type="text" ng-model="newUser.first_name" class="form-control"></input>
<div class="simple-form form-group">
<label>Username</label>
<input type="text" ng-model="newUser.username" class="form-control"></input>

<label>Password</label>
<input type="password" ng-model="newUser.password" class="form-control"></input>

<label>First Name</label>
<input type="text" ng-model="newUser.first_name" class="form-control"></input>

<label>Last Name</label>
<input type="text" ng-model="newUser.last_name" class="form-control"></input>
<label>Email</label>
<input type="email" ng-model="newUser.email" class="form-control"></input>
<label>Last Name</label>
<input type="text" ng-model="newUser.last_name" class="form-control"></input>

<label>Email</label>
<input type="email" ng-model="newUser.email" class="form-control"></input>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button id="createUserButton" type="button" class="btn btn-primary" ng-click="createUser(newUser)" ng-disabled="form.$invalid">Create</button>
<button id="createUserButton" type="button" class="btn btn-primary" ng-click="createUser(newUser)">Create</button>
</div>
</div>
</div>
</div>


</div>

<script type="text/javascript">
Expand Down
6 changes: 6 additions & 0 deletions website/documents.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
<h1>Documents</h1>
</div>

<div class="media">
<div class="media-body">
<h4 class="media-heading"><a href="static/docs/Poster.pdf">Poster</a></h4>
</div>
</div>

<div class="media">
<div class="media-body">
<h4 class="media-heading"><a href="static/docs/ProjectPlan.pdf">Project Plan</a></h4>
Expand Down
Binary file modified website/static/docs/DesignDocument.pdf
Binary file not shown.
Binary file added website/static/docs/Poster.pdf
Binary file not shown.

0 comments on commit b52b4c0

Please sign in to comment.