-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodal.html
117 lines (98 loc) · 4.19 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
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
<head>
<link rel="stylesheet" type="text/css" href="Semantic-UI-CSS-master/components/reset.css">
<link rel="stylesheet" type="text/css" href="Semantic-UI-CSS-master/components/icon.css">
<link rel="stylesheet" type="text/css" href="css/semantic.min.css">
<!--The javascripts!-->
<script src="js/jquery-3.2.0.min.js"></script>
<script src="js/tab.js"></script>
<script src="js/addInput.js"></script>
<script src="js/semantic.min.js"></script>
</head>
<body>
<!--The modal starts here!-->
<div class="ui modal" id="forgot-password">
<div class="header">
Forgot Password?
</div>
<div class="content">
<div class="description"
style="margin: auto;
margin-top: .5vw;
margin-left: 5vw;
margin-right: 5vw;">
<!--TODO-->
<div class="ui form">
<form>
<div class="ui fluid input" style="">
<button class="ui basic teal labeled icon button">
<i class="mail icon"></i>
Mail
</button>
<input type="email">
</div>
<br>
<div class="ui red large submit button labeled icon right floated">
<i class="send icon"></i>
Send
</div>
<br>
<br>
</form>
</div>
</div>
</div>
</div><!--The modal ends here!-->
<!--The modal starts here!-->
<div class="ui modal" id="change-password">
<div class="header">
Change Password?
</div>
<div class="content">
<div class="description"
style="margin: auto;
margin-top: .5vw;
margin-left: 5vw;
margin-right: 5vw;">
<!--TODO-->
<div class="ui form">
<form>
<div class="field">
<label>Current Password</label>
<input type="password" name="password" placeholder="Password">
</div>
<div class="ui two fields">
<div class="field">
<label>New Password</label>
<input type="password" name="confirm-password" placeholder="Confirm Password">
</div>
<div class="field">
<label>Confirm Password</label>
<input type="password" name="confirm-password" placeholder="Confirm Password">
</div>
</div>
<!--Password ends here!-->
<br>
<div class="ui red large submit button labeled icon right floated">
<i class="send icon"></i>
Send
</div>
<br>
<br>
</form>
</div>
</div>
</div>
</div><!--The modal ends here!-->
<button class="ui massive red circular mail icon button" onclick="forgotPasswordModal()">
<i class="add icon"></i>
</button>
<button class="ui massive red circular mail icon button" onclick="changePasswordModal()">
<i class="lock icon"></i>
</button>
<div class="ui yellow large icon button" onclick="addInput()">
<i class="cart icon"></i>
Add Item
</div>
<div class="ui divider"></div>
<div id="addInputDiv"></div>
</body>