-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml_post.html
More file actions
42 lines (39 loc) · 1.55 KB
/
html_post.html
File metadata and controls
42 lines (39 loc) · 1.55 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css_main.css">
<link rel="stylesheet" href="css_post.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide" />
</head>
<body>
<div class="nameMain" align="center">POST DATA</div>
<img src="human1.svg" />
<div class="circle"></div>
<div class="main" align = "center">
<div class="form">
<form action='https://midterm-exam-010723313-2022.herokuapp.com/student_post' class="insert-form" method="post"
align="center">
<input id="st_id" type="text" placeholder="Your ID" required>
<input id="st_name" type="text" placeholder="Your Name" required>
<input id="sensor_name" type="text" placeholder="Sensor Name" required>
<input id="sensor_type" type="text" placeholder="Sensor Type" required>
<input id="sensor_unit" type="text" placeholder="Sensor Unit" required>
<input id="sensor_value" type="text" placeholder="Sensor Value" required>
<button class="btn-submit" type="submit" value="submit">SUBMIT</button>
</form>
</div>
</div>
<div class="btmain">
<button type="button" class="glow-on-hover" onclick="location.href='index.html'">
MAIN
</button>
</div>
<script src="js_post.js"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>