login page

<!-- @copyright: Copyright (C) Mellanox Technologies Ltd. 2014-2016. ALL RIGHTS RESERVED. This software product is a proprietary product of Mellanox Technologies Ltd. (the "Company") and all right, title, and interest in and to the software product, including all associated intellectual property rights, are and shall remain exclusively with the Company. This software product is governed by the End User License Agreement provided with the software product. @author: Tal Almagor @date: 11/14/2013 --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>NEO Login</title> <!-- Favicon --> <link href="static/brand/images/favicon.ico" rel="shortcut icon"> <!-- Bootstrap Core CSS --> <link href="static/css/bootstrap.min.css" rel="stylesheet"> <!-- MetisMenu CSS --> <link href="static/css/metisMenu.min.css" rel="stylesheet"> <!-- Custom CSS --> <link href="static/css/sb-admin-2.css" rel="stylesheet"> <!-- NEO CSS --> <link href="static/brand/css/neo.css" rel="stylesheet" type="text/css"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="static/js/lib/html5shiv.js"></script> <script src="static/js/lib/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="row"> <div class="col-md-12 col-md-offset-12"> <div class="login-panel panel panel-default"> <div id="login-panel" class="panel-heading"> <div class="row"> <div class="col-md-36"> <a class="pull-left" href="http://www.mellanox.com" target="_blank"><img src="static/brand/images/logo_trans.png" height="40px"></a> <img class="pull-right" src="static/brand/images/app_logo_trans.png" height="32px"> </div> </div> </div> <div class="panel-body"> <form id="login-form" role="form" onsubmit="return false;"> <fieldset> <div class="form-group"> <input id="username" class="form-control" placeholder="Username" name="username" type="username" autofocus> </div> <div class="form-group"> <input id="password" class="form-control" placeholder="Password" name="password" type="password" value=""> </div> <!-- Change this to a button or input when using this as a form --> <input id="auto-id-app-login-btn" type="submit" value="Login" class="btn btn-primary"> <span class="error_msg"></span> </fieldset> </form> </div> </div> </div> </div> </div> <!-- jQuery --> <script src="static/js/lib/jquery-1.11.1.min.js"></script> <!-- Bootstrap Core JavaScript --> <script src="static/js/lib/bootstrap.min.js"></script> <!-- Metis Menu Plugin JavaScript --> <script src="static/js/plugins/metisMenu/metisMenu.min.js"></script> <!-- Custom Theme JavaScript --> <script src="static/js/lib/sb-admin-2.js"></script> <script src="static/js/modules/login/login.js"></script> </body> </html>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.