-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerateForm.html
More file actions
28 lines (22 loc) · 867 Bytes
/
generateForm.html
File metadata and controls
28 lines (22 loc) · 867 Bytes
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
<!DOCTYPE>
<html>
<head>
</head>
<body>
<div class = "textFieldDiv" id = "textFieldDivId">
<form style = "background-color : #858689; border-radius : 20px; padding-left : 20px; padding-top : 10px; padding-bottom : 10px;">
<label> <font color=" black" style ="font-weight : bold;"> ID</label> <br>
<input id = "idTextBox" type = "text" placeholder="Your id"> </input><br>
<label>NAME</label><br>
<input id = "nameTextBox" type = "text" placeholder="Your name"> </input><br>
<label>COMPANY</label><br>
<input id = "countryTextBox" type = "text" placeholder="Your company"> </input><br>
<label>COUNTRY</label><br>
<input id = "companyTextBox" type = "text" placeholder="Your country"> </input><br>
<input type = "submit" onclick ="demo()" id ="submitId"> </input>
</form>
</div>
<script>
</script>
</body>
</html>