-
Notifications
You must be signed in to change notification settings - Fork 0
/
member-new.html
173 lines (166 loc) · 5.89 KB
/
member-new.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>02-flexbox</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/favicon.ico" />
<link href="https://use.fontawesome.com/releases/v5.0.0/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
</head>
<body>
<div class="col-sm-7">
<div class="app-wrapper">
<div class="app-nav">
<div class="nav-left">
<!-- <a href="index.html">
<button type="button" class="btn btn-default btn-lg btn-go-back">
<i class="fas fa-arrow-alt-circle-left fa-lg"></i> Members
</button>
</a>
<a href="index.html">
<button type="button" class="btn btn-default btn-lg btn-go-back">
<i class="fas fa-home fa-lg"></i>
</button>
</a> -->
</div>
<div class="nav-right">
<a href="members.html">
<button type="button" class="btn btn-default btn-lg btn-go-back">
Save
</button>
</a>
<a href="members.html">
<button type="button" class="btn btn-default btn-lg btn-go-back">
Cancel
</button>
</a>
</div>
</div>
<div class="container-fluid">
<h1>James Cameron</h1>
<div class="member-container">
<table class="table table-responsive member">
<tbody>
<tr>
<td>First</td>
<td><input type="text" name="" value="" placeholder="first name"></td>
</tr>
<tr>
<td>Last</td>
<td><input type="text" name="" value="" placeholder="last name"></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" name="" value="" placeholder="email"></td>
</tr>
</tbody>
</table>
<h3>Role Preferences</h3>
<table class="table table-responsive member">
<tbody>
<tr>
<td class="property-label">Exempt</td>
<td>
<button class="property-off">
On
</button>
<button class="property-on">
Off
</button>
</td>
</tr>
</tbody>
</table>
<table class="table table-responsive member">
<tbody>
<tr>
<td class="property-label">Greeter</td>
<td>
<button class="property-on">
On
</button>
<button class="property-disabled">
Off
</button>
</td>
</tr>
<tr>
<td class="property-label">Photographer</td>
<td>
<button class="property-on">
On
</button>
<button class="property-disabled">
Off
</button>
</td>
</tr>
<tr>
<td class="property-label">MC</td>
<td>
<button class="property-on">
On
</button>
<button class="property-disabled">
Off
</button>
</td>
</tr>
<tr>
<td class="property-label">News Letter</td>
<td>
<button class="property-on">
On
</button>
<button class="property-disabled">
Off
</button>
</td>
</tr>
<tr>
<td class="property-label">Role X</td>
<td>
<button class="property-on">
On
</button>
<button class="property-disabled">
Off
</button>
</td>
</tr>
<tr>
<td class="property-label">Role Y</td>
<td>
<button class="property-on">
On
</button>
<button class="property-disabled">
Off
</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="col-sm-5">
<ol>
<li>I'm not crazy about the whole 'exclusions' thing with on/off buttons.</li>
<li>First or last name is required</li>
<li>Email is optional</li>
<li>Clicking <b>Save</b> will check for required fields. If validated, will save data to database, and navigate back to Members</li>
<li>Clicking <b>Cancel</b> will discard all input, not write to the database and navigate back to Members</li>
<li>If the <b>Exempt</b> preference is turned-on, all other preferences will be disabled</li>
<li>Click the <b>On</b> or <b>Off</b> buttons to change preference</li>
</ol>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>