-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCIENTIST.html
154 lines (99 loc) · 5.36 KB
/
SCIENTIST.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>REGISTRATION</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="REGISTER2.css">
</head>
<body>
<div id="body">
<a href="HOME.html"><img src="title.png" alt="Logo" height="90px" width="510px"> </a>
<!- NAVIGATION BAR -!>
<ul>
<li><a href="HOME.html">Home</a></li>
<li><a href="ABOUT.html">About Us</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Programmes & Schemes</a>
<div class="dropdown-content">
<a href="http://agricoop.nic.in/farmer-friendly-handbook" target="_blank">Farmer Friendly Handbook</a>
<a href="http://hortharyana.gov.in/en/beneficiary-list-farmers-groups" target="_blank">Benficiaries Report</a>
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Major Crops</a>
<div class="dropdown-content">
<a href="WHEAT.html">Wheat</a>
<a href="MAIZE.html">Maize</a>
<a href="RICE.html">Rice</a>
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Login</a>
<div class="dropdown-content">
<a href="LOGIN1.html">Farmer Login</a>
<a href="LOGIN2.html">Crop Scientist Login</a>
</div>
</li>
</ul>
</div>
<!- ----------------------------------------------FORM----------------------- -!>
<div id="id01" class="modal">
<form class="modal-content" action="test2.php" method="POST">
<div class="container">
<h1>FEEDBACK</h1>
<label for="text"><b>Scientist Name</b></label>
<input type="text" placeholder="Enter First Name" name="F_name" required>
<input type="text" placeholder="Enter Last Name" name="L_name" required><br>
<label for="number"><b>SID</b></label>
<input type="number" id="sid" placeholder="" name="SID" required><br><br>
<label for="number"><b>Machine ID</b></label>
<input type="number" placeholder="Enter MID" name="eMID" required><br><br>
<label for="text"><b>Current Condition</b></label>
<input type="radio" name="Current_statistics" value="normal functioning" checked> Excellent
<input type="radio" name="Current_statistics" value="Good"> Good
<input type="radio" name="Current_statistics" value="Critical"> Critical<br><br><br><br>
<label for="text"><b>Modification</b></label>
<input type="radio" name="Modification" value="No service required" checked> Excellent
<input type="radio" name="Modification" value="oil change"> oil change
<input type="radio" name="Modification" value="service"> service
<input type="radio" name="Modification" value="service**"> service**<br><br><br><br>
<label for="text"><b>Feedback</b></label>
<input type="radio" name="Feedback" value="1" checked> 1
<input type="radio" name="Feedback" value="2"> 2
<input type="radio" name="Feedback" value="3"> 3
<input type="radio" name="Feedback" value="4"> 4
<input type="radio" name="Feedback" value="5"> 5
<br><br><br><br>
<label for="number"><b>Investment</b></label>
<input type="number" placeholder="Enter amount" name="Investment"><br><br>
<label for="psw"><b>Set Password</b></label>
<input type="password" placeholder="Enter Password" name="register2pwd"><br>
<label for="psw-repeat"><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="register2pwd-repeat"><br>
<label>
<input type="checkbox" checked="checked" name="remember" style="margin-bottom:15px"> Remember me
</label><br><br>
<p>By creating an account you agree to our <a href="https://en.wikipedia.org/wiki/Terms_of_service" style="color:dodgerblue"
target="_blank">Terms & Privacy</a>.</p>
<div class="clearfix">
<button type="button" onclick="logout()" class="cancelbtn">Cancel</button>
<button type="submit" class="signupbtn">Register</button>
</div>
</div>
</form>
<!- ---------------End of form---------------------------------------------------------------------------------------- -!>
<script type="text/javascript">
function logout() {
window.location.href = 'HOME.html';
}
</script>
<button onclick="myFunction()" style="position:absolute;top:300px;left:850px;width:100px;">Generate SID</button>
<script>
function myFunction() {
var x = Math.floor((Math.random() * 999) + 100);
document.getElementById("sid").value = x;
}
</script>
</div>
</body>
</html>