Browse Source

email Preparation

Send a mail if one
          of
          my workers goes offline
master
yuriy0803 2 years ago
parent
commit
ffc7d798b9
  1. 13
      www/app/templates/account/settings.hbs

13
www/app/templates/account/settings.hbs

@ -14,7 +14,11 @@
<form action="/api/settings" method="post"> <form action="/api/settings" method="post">
<div class="form-group"> <div class="form-group">
<label for="InputEmail1">Settings</label>
<input type="hidden" id="login" name="login" value="{{model.login}}"> <input type="hidden" id="login" name="login" value="{{model.login}}">
<input type="email" class="form-control" id="email" name="email" aria-describedby="emailHelp"
placeholder="Enter email">
<small id="emailHelp" class="form-text text-dark">We'll never share your email with anyone else.</small>
</div> </div>
<div class="form-group"> <div class="form-group">
@ -32,6 +36,15 @@
Please complete your worker`s IP address in order to validate and save your settings. Please complete your worker`s IP address in order to validate and save your settings.
</small> </small>
</div> </div>
<div class="form-group form-check">
<label class="form-check-label" for="worker_offline">
<input type="checkbox" name="alertCheck" class="form-check-input" id="alertCheck" checked> Send a mail if one
of
my workers goes offline
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button> <button type="submit" class="btn btn-primary">Submit</button>
</form> </form>

Loading…
Cancel
Save