mirror of https://github.com/Ombi-app/Ombi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
4.8 KiB
135 lines
4.8 KiB
@Html.Partial("_Sidebar")
|
|
@{
|
|
int port;
|
|
if (Model.EmailPort == 0)
|
|
{
|
|
port = 25;
|
|
}
|
|
else
|
|
{
|
|
port = Model.EmailPort;
|
|
}
|
|
}
|
|
<div class="col-sm-8 col-sm-push-1">
|
|
<form class="form-horizontal" method="POST" id="mainForm">
|
|
<fieldset>
|
|
<legend>Email Notifications</legend>
|
|
|
|
<div class="form-group">
|
|
<div class="checkbox">
|
|
<label>
|
|
@if (Model.Enabled)
|
|
{
|
|
<input type="checkbox" id="Enabled" name="Enabled" checked="checked"><text>Enabled</text>
|
|
}
|
|
else
|
|
{
|
|
<input type="checkbox" id="Enabled" name="Enabled"><text>Enabled</text>
|
|
}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="checkbox">
|
|
<label>
|
|
@if (Model.Ssl)
|
|
{
|
|
<input type="checkbox" id="Ssl" name="Ssl" checked="checked"><text>SSL Enabled</text>
|
|
}
|
|
else
|
|
{
|
|
<input type="checkbox" id="Ssl" name="Ssl"><text>SSL Enabled</text>
|
|
}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="EmailHost" class="control-label">SMTP Hostname or IP</label>
|
|
<div class="">
|
|
<input type="text" class="form-control form-control-custom " id="EmailHost" name="EmailHost" placeholder="localhost" value="@Model.EmailHost">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="EmailPort" class="control-label">SMTP Port</label>
|
|
|
|
<div class="">
|
|
<input type="text" class="form-control form-control-custom " id="EmailPort" name="EmailPort" placeholder="Port Number" value="@port">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
<label for="EmailSender" class="control-label">Email Sender</label>
|
|
<div>
|
|
<input type="text" class="form-control form-control-custom " id="EmailSender" name="EmailSender" value="@Model.EmailSender">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="RecipientEmail" class="control-label">Email Recipient</label>
|
|
<div>
|
|
<input type="text" class="form-control form-control-custom " id="RecipientEmail" name="RecipientEmail" value="@Model.RecipientEmail">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
<label for="EmailUsername" class="control-label">Username</label>
|
|
<div>
|
|
<input type="text" class="form-control form-control-custom " id="EmailUsername" name="EmailUsername" value="@Model.EmailUsername">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="EmailPassword" class="control-label">Password</label>
|
|
<div>
|
|
<input type="password" class="form-control form-control-custom " id="EmailPassword" name="EmailPassword" value="@Model.EmailPassword">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
<div>
|
|
<button id="save" type="submit" class="btn btn-primary-outline">Submit</button>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
|
|
<script>
|
|
$(function () {
|
|
|
|
$('#save').click(function (e) {
|
|
e.preventDefault();
|
|
var port = $('#EmailPort').val();
|
|
if (isNaN(port)) {
|
|
generateNotify("You must specify a valid Port.", "warning");
|
|
return;
|
|
}
|
|
var $form = $("#mainForm");
|
|
$.ajax({
|
|
type: $form.prop("method"),
|
|
data: $form.serialize(),
|
|
url: $form.prop("action"),
|
|
dataType: "json",
|
|
success: function (response) {
|
|
if (response.result === true) {
|
|
generateNotify(response.message, "success");
|
|
} else {
|
|
generateNotify(response.message, "warning");
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|
|
</script> |