diff options
| author | 8cy <[email protected]> | 2020-05-08 11:55:08 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-05-08 11:55:08 -0700 |
| commit | e5182dd4beb098ad81f775cbc2df9ff25efa80ea (patch) | |
| tree | 212dd7d9bb3f39ab39b6225fb209fdb0d66c7795 /views/signup.ejs | |
| parent | del now (diff) | |
| download | slog-react-test.tar.xz slog-react-test.zip | |
idkreact-test
Diffstat (limited to 'views/signup.ejs')
| -rw-r--r-- | views/signup.ejs | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/views/signup.ejs b/views/signup.ejs index a7a7231..b6b0eae 100644 --- a/views/signup.ejs +++ b/views/signup.ejs @@ -7,9 +7,9 @@ <title>Sin's SS Logger | Signup</title> <link rel="shortcut icon" href="https://i.imgur.com/69mCrs0.jpg" type="image/jpg"> <!-- CSS --> - <link rel="stylesheet" href="css/main.css"> - <link rel="stylesheet" href="css/now-ui-kit.css"> - <link rel="stylesheet" href="css/bootstrap.min.css"> + <link rel="stylesheet" href="/css/main.css"> + <link rel="stylesheet" href="/css/now-ui-kit.css"> + <link rel="stylesheet" href="/css/bootstrap.min.css"> <style> html, @@ -50,8 +50,8 @@ <!-- Invisible Scripts --> <script src="https://code.jquery.com/jquery-3.5.0.min.js" integrity="sha256-xNzN2a4ltkB44Mc/Jz3pT4iU1cmeR0FkXs4pru/JxaQ=" crossorigin="anonymous"></script> - <script src="js/now-ui-kit.js"></script> - <script src="js/main.js"></script> + <script src="/js/now-ui-kit.js"></script> + <script src="/js/main.js"></script> <!-- External Libraries --> <!-- Invisible Scripts --> </head> @@ -101,7 +101,7 @@ <label for="emailSignup" class="sr-only">Email</label> <input type="email" name="emailSignup" id="emailSignup" class="form-control mr-2" placeholder="Email" pattern=".{6,}" required> - <small id="loginUserhelp" class="form-text text-muted">Don't worry, we never share your email with anyone.</small> + <small id="loginUserhelp" class="form-text text-muted">Don't worry, we never share your email with anyone. Fake users will be pruned and deleted.</small> </div> <div class="form-group"> <label for="userSignup" class="sr-only">Username</label> @@ -114,6 +114,10 @@ <input type="password" name="passSignup" id="passSignup" class="form-control mr-2" placeholder="Password" pattern=".{3,}" required> <small id="loginUserhelp" class="form-text text-muted">Pick something secure and easy to remember! Must be atleast 3 characters.</small> + <div> + <input type="checkbox" class="form-check-input" id="terms-check" required style="margin-left: 0 !important; margin-top: .45rem;"> + <label class="form-check-label" for="terms-check" id="white-txt">I agree to the <a href="/terms">terms and services</a>.<label> + </div> <div class="pt-3"> <button type="submit" class="btn btn-success">Signup</button> <a href="/login"> |