forked from houshuang/survey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodal.html
43 lines (27 loc) · 1.12 KB
/
modal.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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="/css/modal.css">
</head>
<body>
<a href="#openModal">Open Modal</a>
<div id="openModal" class="modalDialog">
<div>
<a href="#close" title="Close" class="close">X</a>
<form class="modalform">
<h2>The title goes here</h2>
<fieldset>
<h4>Lorem ipsum dolor sit amet input text?</h4>
<input type="text" name="test" class="textinput">
</fieldset>
<fieldset>
<h4>Lorem ipsum dolor sit amet textarea?</h4>
<textarea name="textarea1"></textarea>
<p class="counter"></p><!-- do not remove -->
</fieldset>
<div class="stepsController prev left"><a href="#">Cancel</a></div>
<input type="submit" value="Submit" class="right">
</form>
</div>
</div>
</body>
</html>