forked from AppStateESS/systemsinventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEdit_User.html
57 lines (55 loc) · 3.01 KB
/
Edit_User.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
<div class="row">
<legend>User and Location Information</legend>
<div class="form-group">
<label for="system_usage">System Usage</label>
<select id="system-usage" name="system_usage" disabled>
<option value="0">Select System Usage</option>
<option value="1">Staff</option>
<option value="2">Student</option>
<option value="3">Public</option>
</select>
</div>
<div class="col-sm-6">
<fieldset>
<div class="form-group">
<label for="username">Username</label> <i title="Required input" class="required fa fa-asterisk"></i>
<input name="username" required id="username" type="text" class="form-control" disabled/>
</div>
<div class="form-group">
<label for="first_name">First Name</label>
<input name="first_name" id="first-name" type="text" class="form-control" disabled/>
</div>
<div class="form-group">
<label for="last_name">Last Name</label>
<input name="last_name" id="last-name" type="text" class="form-control" disabled/>
</div>
<div class="form-group">
<label for="department">Department</label>
<select id="department" name="department" disabled>
</select>
</div>
<div class="form-group">
<label for="location">Location</label>
<select id="location" name="location" disabled>
</select>
</div>
</fieldset>
</div>
<div class="col-sm-6">
<fieldset>
<div class="form-group">
<label for="room_number">Room Number</label>
<input id="room-number" type="text" name="room_number" class="form-control" disabled />
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input id="phone" name="phone" type="tel" class="form-control" placeholder="XXX-XXX-XXXX" disabled />
</div>
</fieldset>
</div>
</div>
<div class="form-group">
<label for="system_notes">Notes</label>
<textarea id="notes" name="system_notes" class="form-control" disabled></textarea>
</div>
</div>