updated setting page
This commit is contained in:
parent
d9895cb353
commit
fd93c1c806
2 changed files with 41 additions and 1 deletions
|
@ -50,7 +50,7 @@
|
|||
}
|
||||
.custom-alert-t{
|
||||
position: fixed;
|
||||
top: 20px;
|
||||
top: -700px;
|
||||
right: 20px;
|
||||
width: 320px;
|
||||
}
|
||||
|
@ -62,4 +62,7 @@
|
|||
#dashboard-body{
|
||||
margin-top: 60px;
|
||||
}
|
||||
.custom-alert-t{
|
||||
top: -1000px;
|
||||
}
|
||||
}
|
|
@ -209,6 +209,43 @@
|
|||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<!--Management team setting-->
|
||||
<div class="card mb-2">
|
||||
<div class="card-body">
|
||||
<div class="d-flex mb-3 align-items-center justify-content-between">
|
||||
<h5 class="card-title m-0">Management Team Settings</h5>
|
||||
<button type="button" class="btn-third" data-bs-toggle="modal" data-bs-target="#team-setting">Add</button>
|
||||
</div>
|
||||
<div class="row" id="team-data">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--Management team setting modal-->
|
||||
<div class="modal fade" id="team-setting" data-bs-backdrop="static" data-bs-keyboard="true" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<form id="team_setting_form">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title">Management Team Settings</h5>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="mb-3">
|
||||
<label class="form-label" style="font-weight: 600;">Name</label>
|
||||
<input type="text" name="member_name" id="member_name_input" class="form-control shadow-none" required/>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label" style="font-weight: 600;">Image</label>
|
||||
<input type="file" name="member_img" id="member_img_input" class="form-control shadow-none" required/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" onclick="" class="btn-cancle" data-bs-dismiss="modal">Cancle</button>
|
||||
<button type="submit" class="btn-third">Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue