-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
91 lines (91 loc) · 3.71 KB
/
form.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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
</head>
<body>
<form method="post"
target="print_popup"
action="/myFormProcessorInNewWindow.aspx"
onsubmit="window.open('about:blank','print_popup','width=1000,height=800');">
<fieldset class="form-group">
<div class="row">
<legend class="col-form-label col-sm-2 pt-0">Do you have Diabetes?</legend>
<div class="col-sm-10">
<div class="form-check">
<input
class="form-check-input"
type="radio"
name="gridRadios"
id="gridRadios1"
value="option1"
checked
/>
<label class="form-check-label" for="gridRadios1">
Yes
</label>
</div>
<div class="form-check">
<input
class="form-check-input"
type="radio"
name="gridRadios"
id="gridRadios2"
value="option2"
/>
<label class="form-check-label" for="gridRadios2">
No
</label>
</div>
</div>
</div>
<!-- <div class="form-group row">
<div class="col-sm-2">Checkbox</div>
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck1" />
<label class="form-check-label" for="gridCheck1">
Example checkbox
</label>
</div>
</div>
</div> -->
<div class="form-group">
<label for="formGroupExampleInput">Your Age?</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example answer">
</div>
<div class="form-group">
<label for="formGroupExampleInput">Number of Siblings</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example answer">
</div>
<div class="form-group">
<label for="formGroupExampleInput">How many of your siblings have diabetes?</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example answer">
</div>
<div class="form-group">
<label for="formGroupExampleInput">Number of paternal uncle/aunts?</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example answer">
</div>
<div class="form-group">
<label for="formGroupExampleInput">How many of them have diabetes?</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example answer">
</div>
<div class="form-group">
<label for="formGroupExampleInput">Number of maternal uncle/aunts?</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example answer">
</div>
<div class="form-group">
<label for="formGroupExampleInput">How many of them have diabetes?</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example answer">
</div>
<div class="col-auto">
<button type="submit" class="btn btn-primary mb-2">Submit</button>
</div>
</div>
</fieldset>
</form>
</body>
</html>