Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge palladium health management system to the main master barnch #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
190 changes: 190 additions & 0 deletions PalladiumHealthSystem/AddPatient.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Serif" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lateef" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/styles.css">
<script src="js/jquery-3.3.1.js"> </script>
<script src="js/location-script.js"> </script>
<title> Patient Details</title>
</head>
<body>
<div class="body">
<div class="jumbotron">
<img height="80px" src="img/pal3.png" alt="logo">
<h1> Palladium Patient Management System </h1>
</div>
<div class="container">
<h1>Enter Patient Details</h1>
<div class="row">
<h3>Enter Bio Data Information </h3>
<div class="col-md-6">
<div class="form-group">
<label class="control-label"> First Name</label>
<input class="form-control" id="FirstName" required="required">
</div>
<div class="form-group">
<label class="control-label"> Last Name</label>
<input class="form-control" id="LastName" required="required">
</div>
<div class="form-group">
<label class="control-label"> Identification Type</label>
<select class="form-control selectpicker" id="IdType"
required="required">
<option> Select </option>
<option> NationalID </option>
<option> Passport </option>
</select>
</div>
<div class="form-group">
<label class="control-label"> Marital Status</label>
<select class="form-control selectpicker" id="MaritalStatus"
required="required">
<option> Select </option>
<option> Single </option>
<option> Married </option>
<option> Divorced </option>
<option> Widowed </option>
</select>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label class="control-label"> Other Name</label>
<input class="form-control" id="OtherName" required="required">
</div>
<div class="form-group">
<label class="control-label"> Date Of Birth</label>
<input type="date" class="form-control" id="OtherName" required="required">
</div>
<div class="form-group">
<label class="control-label"> Identification Number</label>
<input type="text" class="form-control" id="IdNumber" required="required">
</div>
<div class="form-group">
<label class="control-label"> Gender</label>
<select class="form-control selectpicker" id="MaritalStatus"
required="required">
<option> Select </option>
<option> Male </option>
<option> Female </option>
</select>
</div>
</div>
</div>
<hr class="hr">

<div class="row">
<h3>Enter contact information</h3>
<div class="col-md-6">
<div class="form-group">
<label class="control-label"> Phone Number</label>
<input class="form-control" id="PhoneNumber" required="required">
</div>
<div class="form-group">
<label class="control-label"> Alternate Phone Number</label>
<input class="form-control" id="AltPhoneNumber" required="required">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label class="control-label"> Email Address</label>
<input type="email" class="form-control" id="EmailAddress" required="required">
</div>
</div>

</div>
<hr class="hr">
<div class="row">
<h3>Enter location information</h3>
<div class="col-md-6">
<div class="form-group">
<label class="control-label"> Select County</label>
<select class="form-control selectpicker" name="County"
required="required">
<option value="0"> Select </option>
<option value="1"> Nairobi </option>
<option value="2"> Kisumu </option>
<option value="3">Mombasa </option>
</select>
</div>
<div class="form-group">
<label class="control-label"> Ward</label>
<input type="text" class="form-control" id="Ward" required="required">
</div>
<div class="form-group">
<label class="control-label"> Home Address</label>
<input type="text" class="form-control" id="HomeAddress" required="required">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label class="control-label">Select Subcounty</label>
<select
class="form-control selectpicker" id="SubCounty"
required="required">
<option value="0"> Select </option>
<option value="1"> Starehe </option>
<option value="1"> Kasarani </option>
<option value="1">Embakasi </option>
<option value="1">Ruaraka </option>
<option value="2"> Kisumu Central </option>
<option value="2"> Nyakach </option>
<option value="2"> Muhoroni </option>
<option value="2">Seme </option>
<option value="3">Mvita</option>
<option value="3"> Likoni </option>
<option value="3"> Nyali </option>
<option value="3">Kisumu </option>
</select>
</div>
<div class="form-group">
<label class="control-label"> Village</label>
<input type="text" class="form-control" id="Village" required="required">
</div>

</div>

</div>
<hr class="hr">
<div class="row">
<h3>Next of Kin Details </h3>
<div class="col-md-6">
<div class="form-group">
<label class="control-label"> First Name</label>
<input class="form-control" id="FirstName" required="required">
</div>
<div class="form-group">
<label class="control-label"> Relationship</label>
<select class="form-control selectpicker" id="Relationship"
required="required">
<option value="0"> Select </option>
<option value="1"> Mother </option>
<option value="2"> Father </option>
<option value="3">Sibling </option>
</select>
</div>

</div>
<div class="col-md-6">
<div class="form-group">
<label class="control-label"> Last Name</label>
<input class="form-control" id="LastName" required="required">
</div>
<div class="form-group">
<label class="control-label"> Phone Number</label>
<input class="form-control" id="PhoneNumber" required="required">
</div>
</div>
</div>
<div>
<input type="submit" id="btn2" class="btn btn bg-blue margin pull-left" value="Save">
<a href="PatientList.html" class="pull-right"> <h3> Back to list </h3> </a>
</div>

</div>

</body>
</html>
58 changes: 58 additions & 0 deletions PalladiumHealthSystem/Login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Serif" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lateef" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="/css/bootstrap.min.css.map">
<link rel="stylesheet" href="/css/bootstrap-grid.css">
<link rel="stylesheet" href="/css/bootstrap-theme.css">
<title> Patient Management system</title>
</head>
<body>
<div class="container">
<div class="body">
<div class="jumbotron">
<img src="img/pal3.png" alt="logo">
<h1> Palladium Patient Management System </h1>
</div>
<br>
<br>

<div class="well">
<h2>SIGN IN</h2>
<br>
<form>
<h3>Username: <input type="text" class="button2" name="uname"><br>
</h3>
</form>

<br>
<form>
<h3>Password: <input type="charset" class="button3" name="password"><br>
</h3>
</form>
<br>
<br>
<a class="btn btn-default" href="PatientList.html"> Log In </a>
<br>
<br>


<h4><u> <i> <a href="forgot your password?"> </h4> forgot your password? </a> </u>
<h4> <i> <a href="Don't have an account? signup"> </i></h4> Dont have an account? signup </a>

</div>
</div>
</div>


</div>


</div>

</body>
</html>
89 changes: 89 additions & 0 deletions PalladiumHealthSystem/PatientList.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Serif" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lateef" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="bootstrap/dist/css/dataTables.bootstrap.css">
<link rel="stylesheet" href="bootstrap/dist/css/select.dataTables.min.css">
<script src="js/jquery-3.3.1.js"> </script>
<script src="js/location-script.js"> </script>
<script src="bootstrap/dist/js/dataTables.bootstrap.min.js"> </script>
<script src="bootstrap/dist/js/dataTables.select.min.js"> </script>
<title> Patient List</title>
</head>
<body>
<div class="body">
<div class="jumbotron">
<img height="80px" src="img/pal3.png" alt="logo">
<h1> Palladium Patient Management System </h1>
</div>
<div class="container">
<h1>Patient List</h1>
<div class="row">
<a class="btn btn-default" href="AddPatient.html"> Add Patient </a>
<table id="patient-list" class="table table-bordered table-striped" cellspacing="0" width="100%">
<tr>
<th>Patient No.</th>
<th> Name </th>
<th> Date of Birth</th>
<th> Gender</th>
<th> Date Enrolled</th>
<th> Id Number</th>
<th> Phone Number</th>

</tr>
<tr>
<td>
P001
</td>
<td>
John Doe
</td>
<td>
24/09/1988
</td>
<td>
Male
</td>
<td>
27/06/2018
</td>
<td>
2937328
</td>
<td>
07382372323
</td>
</tr>
<tr>
<td>
P002
</td>
<td>
Jane Doe
</td>
<td>
23/07/1995
</td>
<td>
Female
</td>
<td>
28/06/2018
</td>
<td>
390238823
</td>
<td>
0711001100
</td>
</tr>

</table>
</div>
</div>
</body>
</html>
21 changes: 21 additions & 0 deletions PalladiumHealthSystem/bootstrap/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2011-2016 Twitter, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Loading