-
Notifications
You must be signed in to change notification settings - Fork 0
/
reports.html
91 lines (91 loc) · 4.58 KB
/
reports.html
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
<!DOCTYPE html>
<html>
<head>
<title>Dairy Business || Nickfarm</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header">
<div id="icon">
<img src="assets/images/icon.png" alt="">
</div>
<div id="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="reports.html">Reports</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
<div id="container">
<div id="dailymilk">
<h2>Daily milk productions</h2>
<form>
SHED A : <input type="text" id="firstshed" /><br>
SHED B: <input type="text" id="secondshed" /><br>
SHED C : <input type="text" id="thirdshed" /><br>
SHED D: <input type="text" id="forthshed" /><br>
<input type="button" onClick="milkfunction()" Value="Generate Report" />
<input class="button" type="button" value="Reset" onclick="reset()">
</form>
<div id="hidden">
<h3>Summary Report for production today</h3>
<p>Your production in Shed A is <span id = "shed1"></span> litres per day</p>
<p>Your production in Shed B is <span id = "shed2"></span> litres per day</p>
<p>Your production in Shed C is <span id = "shed3"></span> litres per day</p>
<p>Your production in Shed D is <span id = "shed4"></span> litres per day</p>
<p>The total production is <span id="totalmilk"></span> litres per day</p>
</div>
<script src="javascript.js"></script>
</div>
<div id="projection">
<h2>Our Weekly, Monthly and Yearly Projections</h2>
<p>Enter today's production below to calculate our projections</p>
<form>
TODAY'S TOTAL PRODUCTION : <input type="text" id="milk" /><br>
<input type="button" onClick="projection()" Value="Generate Report" />
<input class="button" type="button" value="Reset" onclick="reset()">
</form>
<div id="hidden2">
<h3>Report on expected income projection</h3>
<p>Your weekly income will be Ksh <span id = "weekly"></span> </p>
<p>Your monthly income will be Ksh <span id = "monthly"></span></p>
<p>Your yearly income will be Ksh <span id = "yearly"></span></p>
</div>
</div>
<div id="yearrevenue">
<h2>Whole Year Projection on monthly basis</h2>
<p>Enter today's production below to calculate Whole Year projections</p>
<form>
TODAY'S TOTAL PRODUCTION : <input type="text" id="total" /><br>
<input type="button" onClick="revenue()" Value="Generate Report" />
<input class="button" type="button" value="Reset" onclick="reset()">
</form>
<div id="hidden3">
<h3>Report on expected income projection for the whole in in monthly basis</h3>
</div>
</div>
</div>
<div id="footer">
<div id="menulink">
<h2>Nickfarm Dairy Limited</h2>
</div>
<div id="slogan">
<span><strong>Milk </strong> for a stronger tomorrow</span>
</div>
<div id="social">
<ul>
<li><a href="https://www.facebook.com/kiprotich.korgoren " target="_blank"><img src="assets/images/facebook-512.webp" width="40px" height="40px" alt=""></a></li>
<li><a href="https://twitter.com/ngetichnichoh" target="_blank"><img src="assets/images/twitter_circle-512.webp" alt=""width="40px" height="40px"></a></li>
<li><a href="mailto:[email protected]" target="_blank"><img src="assets/images/gmail.webp" alt=""width="40px" height="40px"></a></li>
</ul>
</div>
<div id="copyright">
<p>2021 Nickfarm Dairy Ltd</p>
</div>
</div>
</body>
</html>