diff options
| author | Malf Furious <m@lfurio.us> | 2016-01-27 22:32:03 -0500 | 
|---|---|---|
| committer | Malf Furious <m@lfurio.us> | 2016-01-27 22:32:03 -0500 | 
| commit | 67fb3eeb6d788b6f58d589757285a0e72a5ea3aa (patch) | |
| tree | 84c049e37ed6ef60d0b40d54b3bdb5802e3bf524 | |
| parent | 9ce26b55017a24f3cae5c20958f2d612273c2f60 (diff) | |
| download | scrott-67fb3eeb6d788b6f58d589757285a0e72a5ea3aa.tar.gz scrott-67fb3eeb6d788b6f58d589757285a0e72a5ea3aa.zip | |
+ Added view for account registration
| -rw-r--r-- | app/view/auth/signup.view.php | 60 | 
1 files changed, 60 insertions, 0 deletions
| diff --git a/app/view/auth/signup.view.php b/app/view/auth/signup.view.php new file mode 100644 index 0000000..273c174 --- /dev/null +++ b/app/view/auth/signup.view.php @@ -0,0 +1,60 @@ +<!DOCTYPE html> + +<html lang="en"> +    <head> +        <?php include "view/common/head.view.php"; ?> +        <title>Scrott - Create Account</title> +    </head> + +    <body> +        <?php include "view/common/topp.view.php"; ?> + +        <div class="container"> +            <?php if (isset($mod->noaccounts)) { ?> +                <div class="jumbotron"> +                    <h1>Almost there....</h1> +                    <p class="text-center">Scrott's configuration is working, but no user accounts exist.<br />Use the form below to signup as an admin.</p> +                    <h5 class="text-center">It is presumed that you are the administrator for this Scrott install.<br />There is a security risk involved with exposing this page to the public!</h5> +                </div> +            <?php } ?> + +            <div class="row"> +                <div class="col-md-3"></div> + +                <div class="col-md-6"> +                    <div class="panel panel-default"> +                        <div class="panel-body"> +                            <form method="post" action="<?=$mod->ap()?>"> +                                <input type="hidden" name="input[action]" value="signup_submit" /> +                                <h1 class="text-center">Signup for Scrott</h1> + +                                <div class="form-group"> +                                    <label for="inputUsername">Username</label> +                                    <input type="text" name="input[username]" id="inputUsername" class="form-control" required="true" maxlength="50" /> +                                </div> + +                                <div class="form-group"> +                                    <label for="inputPassword">Password</label> +                                    <input type="password" name="input[password]" id="inputPassword" class="form-control" /> +                                </div> + +                                <div class="form-group"> +                                    <label for="inputCPassword">Confirm Password</label> +                                    <input type="password" name="input[cPassword]" id="inputCPassword" class="form-control" /> +                                </div> + +                                <button type="submit" class="btn btn-success pull-right"> +                                    Signup <span class="glyphicon glyphicon-user"></span> +                                </button> +                            </form> +                        </div> +                    </div> +                </div> + +                <div class="col-md-3"></div> +            </div> +        </div> + +        <?php include "view/common/foot.view.php"; ?> +    </body> +</html> | 
