Newer
Older
ubFramework / Portal / docroot / user / views / login_two_columns.html
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 2 KB Cleaning Up Making It A Sub Module
<div class="loginColumns animated fadeInDown">
    <div class="row">

            <div class="col-md-6">
                <h2 class="font-bold">Welcome to SpherePBX</h2>

                <p>
                    Perfectly designed and remarkably reliable VoIP services.
                </p>

                <p>
                    Our portal allows you to manage all aspects of your account and services without having to scratch your head! 
                </p>

                <p>
                    <small>Our portal allows you to manage all of your voice and fax services in one place.</small>
                </p>

            </div>
        <div class="col-md-6">
            <div class="ibox-content">
            <div ng-show="error" class="alert alert-danger">{{error}}</div>
                <form class="m-t" role="form" ng-submit="login()">
                    <div class="form-group">
                        <input type="email" class="form-control" placeholder="Username" required="">
                    </div>
                    <div class="form-group">
                        <input type="password" class="form-control" placeholder="Password" required="">
                    </div>
                    <button type="submit" class="btn btn-primary block full-width m-b">Login</button>

                    <a href="#">
                        <small>Forgot password?</small>
                    </a>

                    <p class="text-muted text-center">
                        <small>Do not have an account?</small>
                    </p>
                    <a class="btn btn-sm btn-white btn-block" href="register.html">Create an account</a>
                </form>
                <p class="m-t">
                    <small>SpherePBX Portal Powered By ubManagin Framework &copy; 2017</small>
                </p>
            </div>
        </div>
    </div>
    <hr/>
    <div class="row">
        <div class="col-md-6">
            Copyright SpherePBX
        </div>
        <div class="col-md-6 text-right">
            <small>© 2015-2017</small>
        </div>
    </div>
</div>