Newer
Older
ubFramework / Portal / docroot / templates / login / index.html
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 2 KB Cleaning Up Making It A Sub Module
<!DOCTYPE html>
<html>

<head>

    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>INSPINIA | Login 2</title>

    <link href="/assets/css/bootstrap.min.css" rel="stylesheet">
    <link href="/assets/font-awesome/css/font-awesome.css" rel="stylesheet">

    <link href="/assets/css/animate.css" rel="stylesheet">
    <link href="/assets/css/style.css" rel="stylesheet">

</head>

<body class="gray-bg">
<script src="/assets/js/jquery/jquery-3.1.1.min.js"></script>
<script src="/assets/js/plugins/jquery-ui/jquery-ui.min.js"></script>

    <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">
                    <form class="m-t" role="form" method="post" action="" id="auth_form">
                        <div class="form-group">
                            <input type="email" class="form-control" placeholder="Username" name="data[email]" required="">
                        </div>
                        <div class="form-group">
                            <input type="password" class="form-control" placeholder="Password" name="data[password]" required="">
                        </div>
                        <button type="submit" class="btn btn-primary block full-width m-b" id="auth_form_login">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>
    
  <!--  Initialize SpherePBX System -->
  <script src="/assets/js/lib/common.js"></script>

</body>

</html>