41 lines
923 B
HTML
41 lines
923 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<script src="../static/scripts.js"></script>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Hydro</title>
|
|
</head>
|
|
<body>
|
|
<h1>Information</h1>
|
|
<div>
|
|
Plant Date:
|
|
1/19/2022
|
|
<a href="plantdate.html">Change</a>
|
|
</div>
|
|
<div>
|
|
Last Feed Date:
|
|
<a href="lastfeeddate.html">Change</a>
|
|
</div>
|
|
<div>
|
|
Next Feed Date:
|
|
<a href="nextfeeddate.html">Change</a>
|
|
</div>
|
|
<div>
|
|
Feed Frequency:
|
|
<a href="freedfreq.html">Change</a>
|
|
</div>
|
|
<h1>Alerts</h1>
|
|
<div>
|
|
<input type="checkbox" id="alert_text" name="AlertText" value=true>
|
|
<label for="alert_text">Text Message</label>
|
|
<input type="checkbox" id="alert_email" name="AlertEmail" value=true>
|
|
<label for="alert_email">Email</label><br>
|
|
<button class=button onclick="updateAlerts()">Save</button>
|
|
</div>
|
|
<br><br>
|
|
<div>
|
|
<button class=button onclick="updateFeed()">Update Feed</button>
|
|
</div>
|
|
</body>
|
|
</html> |