"User Type"
Bootstrap 2.3.2 Snippet by quaker64

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
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<form class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>User Type</legend>
<!-- Multiple Radios -->
<div class="control-group">
<label class="control-label" for="is_admin">User Type</label>
<div class="controls">
<label class="radio" for="is_admin-0">
<input name="is_admin" id="is_admin-0" value="Standard User" checked="checked" type="radio">
Standard User
</label>
<label class="radio" for="is_admin-1">
<input name="is_admin" id="is_admin-1" value="Admin(Manages configuration and users)" type="radio">
Admin(Manages configuration and users)
</label>
</div>
</div>
<!-- Form Name -->
<legend>Permissions</legend>
<!-- Multiple Checkboxes -->
<div class="control-group">
<label class="control-label" for="audience_group">Audience</label>
<div class="controls">
<label class="checkbox" for="audience_group-0">
<input name="audience_group" id="audience_group-0" value="Read Only" type="checkbox">
Read Only
</label>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: