| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <!--
- Copyright (C) 2019-2023 Nicola Murino
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published
- by the Free Software Foundation, version 3.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
- -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <meta name="description" content="">
- <meta name="author" content="">
- <title>SFTPGo - Setup</title>
- <link rel="shortcut icon" href="{{.StaticURL}}{{.Branding.FaviconPath}}" />
- <!-- Custom styles for this template-->
- {{- range .Branding.DefaultCSS}}
- <link href="{{$.StaticURL}}{{.}}" rel="stylesheet" type="text/css">
- {{- end}}
- <style>
- {{template "commoncss" .}}
- </style>
- </head>
- <body class="bg-gradient-primary">
- <div class="container">
- <!-- Outer Row -->
- <div class="row justify-content-center">
- <div class="col-xl-7 col-lg-8 col-md-10">
- <div class="card o-hidden border-0 shadow-lg my-5">
- <div class="card-body p-0">
- <!-- Nested Row within Card Body -->
- <div class="row">
- <div class="col-lg-12">
- <div class="p-5">
- <div class="text-center">
- <h1 class="h5 text-gray-900 mb-4">To start using SFTPGo you need to create an admin user</h1>
- </div>
- {{if .Error}}
- <div class="alert alert-warning alert-dismissible fade show" role="alert">
- {{.Error}}
- <button type="button" class="close" data-dismiss="alert" aria-label="Close">
- <span aria-hidden="true">×</span>
- </button>
- </div>
- {{end}}
- <form id="login_form" action="{{.CurrentURL}}" method="POST" autocomplete="off"
- class="user-custom">
- {{if .HasInstallationCode}}
- <div class="form-group">
- <input type="text" class="form-control form-control-user-custom" id="inputInstallCode"
- name="install_code" placeholder="{{.InstallationCodeHint}}" value="" required>
- </div>
- {{end}}
- <div class="form-group">
- <input type="text" class="form-control form-control-user-custom" id="inputUsername"
- name="username" placeholder="Username" value="{{.Username}}" spellcheck="false" required>
- </div>
- <div class="form-group">
- <input type="password" class="form-control form-control-user-custom" id="inputPassword"
- name="password" placeholder="Password" autocomplete="new-password" spellcheck="false" required>
- </div>
- <div class="form-group">
- <input type="password" class="form-control form-control-user-custom" id="inputConfirmPassword"
- name="confirm_password" placeholder="Repeat password" autocomplete="new-password" spellcheck="false" required>
- </div>
- <input type="hidden" name="_form_token" value="{{.CSRFToken}}">
- <button type="submit" class="btn btn-primary btn-user-custom btn-block">
- Create admin
- </button>
- </form>
- {{if not .HideSupportLink}}
- <hr>
- <div class="text-center">
- <a class="small" href="https://github.com/drakkan/sftpgo#sponsors" target="_blank">SFTPGo needs your help</a>
- </div>
- {{end}}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- Bootstrap core JavaScript-->
- <script src="{{.StaticURL}}/vendor/jquery/jquery.min.js"></script>
- <script src="{{.StaticURL}}/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
- <!-- Core plugin JavaScript-->
- <script src="{{.StaticURL}}/vendor/jquery-easing/jquery.easing.min.js"></script>
- <!-- Custom scripts for all pages-->
- <script src="{{.StaticURL}}/js/sb-admin-2.min.js"></script>
- </body>
- </html>
|