-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc.php
98 lines (93 loc) · 2.16 KB
/
c.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
body {
font-family: 'Varela Round', sans-serif;
}
.modal-login {
width: 320px;
}
.modal-login .modal-content {
border-radius: 1px;
border: none;
}
.modal-login .modal-header {
position: relative;
justify-content: center;
background: #f2f2f2;
}
.modal-login .modal-body {
padding: 30px;
}
.modal-login h4 {
text-align: center;
font-size: 26px;
}
.modal-login label {
font-weight: normal;
font-size: 13px;
}
.modal-login .form-control, .modal-login .btn {
min-height: 38px;
border-radius: 2px;
}
.modal-login .hint-text {
text-align: center;
}
.modal-login .close {
position: absolute;
top: 15px;
right: 15px;
}
.modal-login .checkbox-inline {
margin-top: 12px;
}
.modal-login input[type="checkbox"]{
margin-top: 2px;
}
.modal-login .btn {
min-width: 100px;
background: #3498db;
border: none;
line-height: normal;
}
.modal-login .btn:hover, .modal-login .btn:focus {
background: #248bd0;
}
.modal-login .hint-text a {
color: #999;
}
.trigger-btn {
display: inline-block;
margin: 100px auto;
}
</style>
</head>
<body>
<div class="text-center">
<!-- Button HTML (to Trigger Modal) -->
<a href="#myModal" class="trigger-btn" data-toggle="modal"><input type="button" value="Comment" name="Comment" class="but" style="height:35px; width:90px;" ></a>
</div>
<!-- Modal HTML -->
<div id="myModal" class="modal fade">
<div class="modal-dialog modal-login">
<div class="modal-content">
<form action="/examples/actions/confirmation.php" method="post">
<div class="modal-header">
<h4 class="modal-title">Add Comment</h4>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="form-group">
<input type="text" class="form-control" required="required">
</div>
<input type="submit" value="Submit">
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>