Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 13.59.183.77
<script>
//$("select").selectpicker();
</script>
<!-- Latest compiled and minified CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.14/dist/css/bootstrap-select.min.css"
/>
<!-- Latest compiled and minified JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.14/dist/js/bootstrap-select.min.js"></script>
<div class="row clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="card">
<div class="header">
<h2>
<b>Create User</b>
<div style="float: right;">
<button
type="button"
class="btn btn-primary waves-effect m-l-5"
onclick="loadedit()"
>
Edit / View
</button>
<button
type="button"
class="btn btn-primary waves-effect m-l-5"
onclick="loadCreateUser()"
>
Clear
</button>
</div>
</h2>
</div>
<div class="row clearfix" id="edittable" style="margin: auto;padding:20px;" hidden>
</div>
<div class="body" style="padding:20px;" onload="loadDegree()">
<input type="hidden" id="screen" value="add" />
<form class="form-horizontal" id="add">
<div class="row clearfix">
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label" style="margin-top: 10px;">
<label class="pull-left" for="daterange"><b style="font-size: medium;">Name</b></label>
</div>
<div class="col-sm-4 col-md-3">
<div class="form-group">
<div class="form-line">
<input
type="text"
class="form-control date"
id="name"
placeholder="User Name"
/>
</div>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label" style="margin-top: 10px;">
<label class="pull-left" for="daterange"><b style="font-size: medium;">Mobile No.</b></label>
</div>
<div class="col-sm-4 col-md-3">
<div class="form-group">
<div class="form-line">
<input
type="text"
class="form-control date"
id="mob"
placeholder="Mobile No."
maxlength="10"
onkeypress="AcceptNumbersOnly(event)"
/>
</div>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label" style="margin-top: 10px;">
<label class="pull-left" for="daterange"
><b style="font-size: medium;">User Name (for login)</b></label
>
</div>
<div class="col-sm-4 col-md-3">
<div class="form-group">
<div class="form-line">
<input
type="text"
class="form-control date"
id="username"
placeholder="User Name (for login)"
onkeypress="allowAlphaNumericSpace(event)"
/>
</div>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label" style="margin-top: 10px;">
<label class="pull-left" class="pull-left" for="RollnumberRange"
><b style="font-size: medium;">Password</b></label
>
</div>
<div class="col-sm-4 col-md-3">
<div class="form-group">
<div class="form-line">
<input
type="password"
id="password"
class="form-control"
placeholder="Password"
/>
</div>
</div>
</div>
</div>
<div class="row clearfix" id="degtable" style="margin: auto;padding: 20px;"><table class="table table-bordered" >
<thead>
</tbody></table></div>
<div class="row clearfix">
<div
class="col-lg-offset-5 col-md-offset-3 col-sm-offset-4 col-xs-offset-5"
style="padding: 20px;"
>
<button
type="button"
class="btn btn-primary waves-effect m-l-40"
onclick="createUser()"
style="padding: 10px;"
>
Submit
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<style>
.dropdown-menu .inner {
padding-left: 31px !important;
padding-right: 0px !important;
}
</style>
|