change-user-id.component.html
4.12 KB
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
<div class="container-fluid">
<!-- navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<site-menu></site-menu>
</div>
</nav>
<!-- navigation -->
<div class="clearfix"></div>
<div class="row">
<!-- main-heading -->
<div class="col-sm-12 pageHeading">
<h4>Change User ID</h4>
</div>
<!-- main-heading -->
<!-- container -->
<div class="col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3">
<div class="container-fluid main-full">
<div class="row">
<div class="well">
<div class="row">
<div class="col-sm-12">
<h5 class="text-center text-success"><strong>**To change your user ID fill all the text fields carefully.</strong></h5>
<div class="panel-body">
<!-- form -->
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail3" class="col-sm-4 control-label">Old User Id <span class="red">*</span> :</label>
<div class="col-sm-7">
<input type="text" class="form-control" id="inputEmail3" placeholder="">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-4 control-label">New User Id <span class="red">*</span> :</label>
<div class="col-sm-7">
<input type="password" class="form-control" id="inputPassword3" placeholder="">
<span class="help-block">(Minimum 8 characters)</span>
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-4 control-label">Confirm User Id <span class="red">*</span> :</label>
<div class="col-sm-7">
<input type="password" class="form-control" id="inputPassword3" placeholder="">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-4 col-sm-7 mar-top17">
<button type="button" class="btn btn-primary btn-sm" data-toggle="modal" data-target="#mymodal"><i class="fa fa-check"></i> Update</button>
<!--cancel-button-->
<div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" id="mymodal">
<div class="modal-dialog modal-sm" role="document">
<div class="modal-content">
<div class="modal-header annotation-modal-header ui-draggable-handle">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="">Alert</h4>
</div>
<div class="modal-body">
<h5>Please enter your old user ID.</h5>
</div>
<div class="modal-footer">
<div class="row">
<div class="col-sm-12"><button class="btn btn-primary btn-sm">Ok</button></div>
</div>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<!--cancel-button-->
<button type="submit" class="btn btn-primary btn-sm"><i class="fa fa-close"></i> Cancel</button>
</div>
</div>
</form>
<!-- form -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- container -->
</div>
</div>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<!--Nav-->
<script>
$(function() {
$( "#slider-range-min-2" ).slider({
range: "min",
min: 1,
max: 60,
value: 10,
slide: function( event, ui ) {
$( "#amount-2" ).val( ui.value );
}
});
$( "#amount-2" ).val( $( "#slider-vertical-2" ).slider( "value" ) );
});
</script>
<!--Nav-->
<script>
$('.modal').draggable({
handle: '.modal-header'
})
</script>