Blame view
app/partials/signup/signup.html
5.84 KB
feacde5ff
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
<!DOCTYPE html> <html lang="en" ng-app="acufuel"> <head> <meta charset="utf-8"> <title>Create an Account :: Base Admin</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <link href="./css/bootstrap.min.css" rel="stylesheet" type="text/css" /> <link href="./css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css" /> <link href="./css/font-awesome.min.css" rel="stylesheet"> <link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,600" rel="stylesheet"> <link href="./css/ui-lightness/jquery-ui-1.10.0.custom.min.css" rel="stylesheet"> <link href="./css/base-admin-3.css" rel="stylesheet"> <link href="./css/base-admin-3-responsive.css" rel="stylesheet"> <link href="./css/pages/signin.css" rel="stylesheet"> <link href="./css/custom.css" rel="stylesheet"> </head> <body> <nav class="navbar navbar-inverse" role="navigation"> <div class="container"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="./index.html">Base Admin 3.0</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav navbar-right"> <li class=""> <a href="./signup.html"> Create an Account </a> </li> <li class=""> <a href="#"> <i class="icon-chevron-left"></i> Back to Homepage </a> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <div class="account-container register stacked"> <div class="content clearfix"> <form action="./index.html" method="post"> <h1>Create Your Account</h1> <div class="login-social"> <p>Sign in using social network:</p> <div class="twitter"> <a href="#" class="btn_1">Login with Twitter</a> </div> <div class="fb"> <a href="#" class="btn_2">Login with Facebook</a> </div> </div> <div class="login-fields"> <p>Create your free account:</p> <div class="field"> <label for="firstname">First Name:</label> <input type="text" id="firstname" name="firstname" value="" placeholder="First Name" class="form-control" /> </div> <!-- /field --> <div class="field"> <label for="lastname">Last Name:</label> <input type="text" id="lastname" name="lastname" value="" placeholder="Last Name" class="form-control" /> </div> <!-- /field --> <div class="field"> <label for="email">Email Address:</label> <input type="text" id="email" name="email" value="" placeholder="Email" class="form-control"/> </div> <!-- /field --> <div class="field"> <label for="password">Password:</label> <input type="password" id="password" name="password" value="" placeholder="Password" class="form-control"/> </div> <!-- /field --> <div class="field"> <label for="confirm_password">Confirm Password:</label> <input type="password" id="confirm_password" name="confirm_password" value="" placeholder="Confirm Password" class="form-control"/> </div> <!-- /field --> </div> <!-- /login-fields --> <div class="login-actions"> <span class="login-checkbox"> <input id="Field" name="Field" type="checkbox" class="field login-checkbox" value="First Choice" tabindex="4" /> <label class="choice" for="Field">I have read and agree with the Terms of Use.</label> </span> <button class="login-action btn btn-primary">Register</button> </div> <!-- .actions --> </form> </div> <!-- /content --> </div> <!-- /account-container --> <!-- Text Under Box --> <div class="login-extra"> Already have an account? <a href="./login.html">Login</a> </div> <!-- /login-extra --> <!-- Le javascript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="./js/libs/jquery-1.9.1.min.js"></script> <script src="./js/libs/jquery-ui-1.10.0.custom.min.js"></script> <script src="./js/libs/bootstrap.min.js"></script> <script src="./js/Application.js"></script> <script src="./js/demo/signin.js"></script> </body> </html> |