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 : 18.188.130.151
Current Path : /var/www/html/ibm/ |
| Current File : /var/www/html/ibm/createUser.html |
<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>
Create User
<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="body">
<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">
<label class="pull-left" for="daterange">Name</label>
</div>
<div class="col-sm-4 col-md-2">
<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">
<label class="pull-left" for="daterange">Mobile No.</label>
</div>
<div class="col-sm-4 col-md-2">
<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">
<label class="pull-left" for="daterange"
>User Name (for login)</label
>
</div>
<div class="col-sm-4 col-md-2">
<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">
<label class="pull-left" class="pull-left" for="RollnumberRange"
>Password</label
>
</div>
<div class="col-sm-4 col-md-2">
<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="seldeg">
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label">
<label class="pull-left" for="daterange">Degree Group</label>
</div>
<div class="col-sm-4 col-md-2">
<div class="form-group">
<div class="form-line">
<select
id="deggrp"
class="form-control"
onchange="loadDegree()"
>
</select>
</div>
</div>
</div>
</div>
<div class="row clearfix" id="degtable"></div>
<div class="row clearfix">
<div
class="col-lg-offset-3 col-md-offset-3 col-sm-offset-4 col-xs-offset-5"
>
<button
type="button"
class="btn btn-primary waves-effect m-l-40"
onclick="createUser()"
>
Submit
</button>
</div>
</div>
</form>
<form class="form-horizontal" id="edit">
<div class="row clearfix">
<div class="col-lg-10 col-sm-12 col-md-10" id="edittable"></div>
</div>
</form>
</div>
</div>
</div>
</div>
<style>
.dropdown-menu .inner {
padding-left: 31px !important;
padding-right: 0px !important;
}
</style>
|