69 lines
2.9 KiB
PHP
69 lines
2.9 KiB
PHP
@extends('Admin.layouts.master')
|
|
|
|
@section('content')
|
|
@php
|
|
$currentPage = 'manage_notification';
|
|
@endphp
|
|
<!--begin::Wrapper-->
|
|
<!--<div class="app-wrapper flex-column flex-row-fluid meeting-datails" id="kt_app_wrapper">-->
|
|
<style>
|
|
label.error {
|
|
width: 100%;
|
|
color: #d50c0c;
|
|
}
|
|
</style>
|
|
<!--begin::Main-->
|
|
<div class="app-main appmain flex-column flex-row-fluid" id="kt_app_main">
|
|
<!--begin::Content wrapper-->
|
|
<div class="d-flex flex-column flex-column-fluid">
|
|
<!--begin::Toolbar-->
|
|
<div class="mng-noti bg-color-card p-5 m-5">
|
|
<h1 class="page-heading d-flex text-dark fw-bold fs-3 flex-column justify-content-center my-0">
|
|
Manage Notification</h1>
|
|
<div class="typemsg">
|
|
<form id="send_notification_form">
|
|
<input type="text" name="title" placeholder="Type Message Here">
|
|
<input type="text" name="message" placeholder="Provide Hyperlink Here (exp: / user/join-live.)">
|
|
<div class="send-noti" style="margin-top: 12px;">
|
|
<button type="submit" class="btn btn-sm fw-bold btn-primary explore submit" id="save" >Send Notification
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<!-- <h1 class="notific-head">Manage Notifications Messages</h1>
|
|
|
|
<div class="text-area tt-area">
|
|
|
|
<div class="select-options s-opt">
|
|
<select class="form-select form-select-solid" data-control="select2" data-placeholder="Search" data-hide-search="true">
|
|
<option></option>
|
|
<option value="Search" selected>Search</option>
|
|
<option value="Workout reminder">Workout reminder</option>
|
|
<option value="Friend request">Friend request</option>
|
|
<option value="Quiz reminder">Quiz reminder</option>
|
|
<option value="Meditive weight scale">Meditive weight scale</option>
|
|
<option value="Subscription renew">Subscription renew</option>
|
|
</select>
|
|
</div>
|
|
|
|
</div>
|
|
<p>Message:</p>
|
|
|
|
<div class="text-area">
|
|
<textarea placeholder="Your payment card is about to expire. update it now"></textarea>
|
|
<div class="send-btn">
|
|
<a href="">Send</a>
|
|
</div>
|
|
</div>-->
|
|
</div>
|
|
<!--end::Toolbar-->
|
|
<!--begin::Content-->
|
|
<!--end::Content-->
|
|
</div>
|
|
<!--end::Content wrapper-->
|
|
|
|
</div>
|
|
<!--end:::Main-->
|
|
<!--</div>-->
|
|
|
|
@endsection |