View RangeIndicator.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- | |
Created using JS Bin | |
http://jsbin.com | |
Copyright (c) 2018 by aarsh (http://jsbin.com/xozumih/2/edit) | |
Released under the MIT license: http://jsbin.mit-license.org | |
--> | |
<meta name="robots" content="noindex"> |
View result.partial.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="col-md-5 panel panel-primary"> | |
<div class="panel-heading"> | |
<h3 id="hImpairmentText" class="text-center">Impairment Domain: Not Well Controlled</h3> | |
</div> | |
<div class="row unselectable"> | |
<p class="text-center">Recommended Action for treatment <i> | |
<small> (editable)</small> | |
</i>: | |
</p> |
View patients_before.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 1, | |
"username": "cory.rempel", | |
"password": "c705d522bab6e3ba27b3f717062a116f81f7d7ca", | |
"active": true, | |
"personType": "PATIENT", | |
"firstName": "Rafael", | |
"middleName": "Cassandra", | |
"lastName": "Pagac", | |
"contactPhone": "05942567846", |
View Questionnaire.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"resourceType": "Questionnaire", | |
"id": "5205", | |
"meta": { | |
"versionId": "1", | |
"lastUpdated": "2018-04-18T02:09:03.488+00:00" | |
}, | |
"title": "5-11 yrs of age", | |
"status": "active", | |
"date": "2018-04-17T22:09:02-04:00", |
View QuestionnaireResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"resourceType": "QuestionnaireResponse", | |
"id": "5206", | |
"meta": { | |
"versionId": "1", | |
"lastUpdated": "2018-04-18T02:10:06.187+00:00" | |
}, | |
"questionnaire": { | |
"reference": "Questionnaire/5205" | |
}, |
View index.jsp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %> | |
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> | |
<%@ taglib prefix="t" tagdir="/WEB-INF/tags" %> | |
<t:wrapper> | |
<jsp:attribute name="header"> | |
</jsp:attribute> |
View home.jsp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %> | |
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> | |
<%@ taglib prefix="t" tagdir="/WEB-INF/tags" %> | |
<t:wrapper> | |
<jsp:attribute name="header"> | |
</jsp:attribute> |
View Login.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.gatech.epidemics.viewmodel; | |
/** | |
* @author atalati | |
*/ | |
public class Login { | |
private String username; | |
private String password; | |
public Login() { |
View HomeController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.gatech.epidemics.controller; | |
import edu.gatech.epidemics.viewmodel.Login; | |
import org.springframework.stereotype.Controller; | |
import org.springframework.web.bind.annotation.*; | |
/** | |
* @author atalati | |
*/ | |
@Controller |
View 01_schema_aarsh.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MySQL Setup | |
SET default_storage_engine=InnoDB; | |
USE epidemics; | |
DROP TABLE IF EXISTS person_type; | |
CREATE TABLE person_type ( | |
`id` INT NOT NULL PRIMARY KEY, | |
`person_type_name` VARCHAR(100) NOT NULL |