-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
101 lines (85 loc) · 3.56 KB
/
home.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php include('security.php'); ?>
<?php include('includes/header.php');?>
<?php include('includes/navbar.php');?>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/ouical_generator.css">
<!-- Theme Style -->
<style type="text/css">
#reminder {
width: 100%;
height: 100vh;
background: url("img/med/reminder1.jpg") top center;
background-size: cover;
position: relative;
margin-bottom: -90px;
}
#reminder h1 {
margin: 20px 0 20px 0;
font-size: 42px;
font-weight: 700;
line-height: 56px;
text-transform: uppercase;
color: #000;
text-shadow: -1px 0 2px #2f4d5a;
}
</style>
<!-- ======= Hero Section ======= -->
<section id="reminder" class="d-flex align-items-center" >
<div class="container">
<div class="row">
<div class="col-lg-6 pt-5 pt-lg-0 order-2 order-lg-1 d-flex flex-column justify-content-center">
<h1 data-aos="fade-up" style="color: white;">Home Treatment And Alarm System For Routine</h1>
</div>
<div class="col-lg-6 order-1 order-lg-2 hero-img" data-aos="fade-left" data-aos-delay="200">
<img src="img/med/calender.gif" class="img-fluid animated" alt="">
</div>
</div>
</div>
</section><!-- End Hero -->
<br><br>
<div class="jumbotron col-lg-12">
<h2 style="text-align: center;">SET REMINDERS</h2>
<br><br>
<form id="calendar-generator">
<div class="form-group">
<label for="event-title" style="text-align: left;">Title:</label>
<input type="text" class="form-control" name="event-title" placeholder="Enter title" required id="event-title">
</div>
<div class="form-group">
<label for="start-time" style="text-align: left;">Start Time:</label>
<input type="datetime-local" class="form-control" name="start-time" required id="start-time">
</div>
<div class="form-group">
<label for="end-time">End Time:</label>
<input type="datetime-local" class="form-control" name="end-time" required id="end-time">
</div>
<div class="form-group">
<label for="event-address" style="text-align: left;">Name of Medication:</label>
<input type="text" name="event-address" class="form-control" placeholder="Enter Medication"required id="event-address">
</div>
<div class="form-group">
<label for="event-description"></label>
<textarea name="textarea" rows="10" cols="50" class="form-control" placeholder="Enter the Dosage of Medication" required id="event-description"></textarea>
</div>
<div class="form-group">
<label for="event-id" style="text-align: left;">Assign custom ID:</label>
<input class="form-control" type="text" name="event-id" id="event-id">
</div>
<div class="form-group">
<label for="event-class" style="text-align: left;">Assign custom category:</label>
<input class="form-control" type="text" name="event-class" id="event-class">
</div>
<input type="submit" value="GENERATE REMINDER" />
<h2 style="text-align: center;">CUSTOMIZE & SAVE REMINDERS:</h2>
<p style="text-align: center;">Click on "View Using" to select calender type & Set Alarm</p>
</form>
<div class="container">
<div id="live-example"></div>
<div id="html-result"></div>
</div>
</div>
<script src="js/ouical_generator.js"></script>
<script src="js/ouical.js"></script>
<script src="js/ouical.min.js"></script>
<?php include('includes/scripts.php');?>
<?php include('includes/footer.php');?>