-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.blade.php
More file actions
90 lines (87 loc) · 4.56 KB
/
settings.blade.php
File metadata and controls
90 lines (87 loc) · 4.56 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
@extends('service_views.notify.master_layout')
@section('content')
<div class="action-content">
<div class="settings left-border">
<h4 class="action-title">Sms settings</h4>
<hr>
<div class="form-container">
<form id="smsSettings" action="#" method="POST" class="form-horizontal" role="form">
<label>Sender Number</label>
<input type="text" name="" id="senderNumber" class="form-control" value="" required="required" placeholder="Your Twilio sender number" title="">
<br>
<label>Authentication Token</label>
<textarea name="" id="authToken" class="form-control" rows="2" required="required" placeholder="Twilio authentication Token"></textarea>
<br>
<label>Account ID</label>
<textarea name="" id="accountId" class="form-control" rows="2" required="required" placeholder="Twilio Account ID"></textarea>
<br> <br>
<div class="form-group">
<div class="col-sm-12 text-center">
<button type="submit" class="btn btn-lg btn-success">
<i class="fa fa-check" aria-hidden="true"></i> Update Sms</button>
</div>
</div>
</form>
</div>
</div>
<div class="settings left-border">
<h4 class="action-title">Email Settings</h4>
<hr>
<div class="form-container">
<form id="emailSettings" action="" method="POST" class="form-horizontal" role="form">
<label>Sender Email</label>
<input type="text" name="" id="senderEmail" class="form-control" value="" required="required" placeholder="Sender Email" title="">
<br>
<label>Sender Name</label>
<input type="text" name="" id="senderName" class="form-control" value="" required="required" placeholder="Sender Name" title="">
<br>
<label>API KEY</label>
<textarea name="" id="apiKey" class="form-control" rows="2" required="required" placeholder="Sendgrid API key"></textarea>
<br> <br>
<div class="form-group">
<div class="col-sm-12 text-center">
<button type="submit" class="btn btn-lg btn-success">
<i class="fa fa-check" aria-hidden="true"></i> Update Email</button>
</div>
</div>
</form>
</div>
</div>
<div class="settings left-border">
<h4 class="action-title">Push Notification Settings</h4>
<hr>
<div class="form-container">
<form id="pushsettings" action="" method="POST" class="form-horizontal" role="form">
<label>APP ID</label>
<input type="text" name="" id="appID" class="form-control" value="" required="required" placeholder="Pusher APP ID" title="">
<br>
<label>APP KEY</label>
<input type="text" name="" id="appkey" class="form-control" value="" required="required" placeholder="Pusher App Key" title="">
<br>
<label>APP SECRET</label>
<input type="text" name="" id="appsecrete" class="form-control" value="" required="required" placeholder="Pusher App Secret" title="">
<br>
<label>APP OPTION</label>
<select name="" id="appOptions" class="form-control" required="required">
<option value="true">true</option>
<option value="false">false</option>
</select>
<br>
<label>Broadcast Event</label>
<input type="text" name="" id="brodEvent" class="form-control" value="" required="required" placeholder="General Broadcast Event" title="">
<br>
<label>Broadcast Channel</label>
<input type="text" name="" id="brodChannel" class="form-control" value="" required="required" placeholder="General Broadcast Channel" title="">
<br>
<br> <br>
<div class="form-group">
<div class="col-sm-12 text-center">
<button type="submit" class="btn btn-lg btn-success">
<i class="fa fa-check" aria-hidden="true"></i> Update Push</button>
</div>
</div>
</form>
</div>
</div>
</div>
@endsection