|
@@ -1,46 +1,37 @@
|
|
|
-<!DOCTYPE html>
|
|
|
-<html lang="en" class="no-js">
|
|
|
-
|
|
|
- <head>
|
|
|
-
|
|
|
- <meta charset="utf-8">
|
|
|
- <title>Login</title>
|
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
- <meta name="description" content="">
|
|
|
- <meta name="author" content="">
|
|
|
-
|
|
|
- <!-- CSS -->
|
|
|
- <link rel='stylesheet' href='http://fonts.googleapis.com/css?family=PT+Sans:400,700'>
|
|
|
- {css href="__ROOT__/__CSS__/reset.css" /}
|
|
|
- {css href="__ROOT__/__CSS__/supersized.css" /}
|
|
|
- {css href="__ROOT__/__CSS__/style.css" /}
|
|
|
-
|
|
|
- </head>
|
|
|
-
|
|
|
- <body>
|
|
|
-
|
|
|
- <div class="page-container">
|
|
|
- <h1>登录</h1>
|
|
|
- <form action="__URL__/login" method="post">
|
|
|
- <input type="text" name="username" class="username" placeholder="用户名" />
|
|
|
- <input type="password" name="password" class="password" placeholder="密码" />
|
|
|
- <button type="submit">Sign</button>
|
|
|
- <div class="error"><span>+</span></div>
|
|
|
- </form>
|
|
|
- <div class="connect">
|
|
|
- <p>Or connect with:</p>
|
|
|
- <p>
|
|
|
- <a class="facebook" href=""></a>
|
|
|
- <a class="twitter" href=""></a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <!-- Javascript -->
|
|
|
- {js href="__ROOT__/__JS__/jquery-1.8.2.min.js"}
|
|
|
- {js href="__ROOT__/__JS__/supersized.3.2.7.min.js"}
|
|
|
- {js href="__ROOT__/__JS__/login.js"}
|
|
|
-
|
|
|
- </body>
|
|
|
-
|
|
|
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
+<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
+<head>
|
|
|
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
+<title>Login</title>
|
|
|
+{css href="__ROOT__/__CSS__/style.css" /}
|
|
|
+{css href="__ROOT__/__CSS__/body.css" /}
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+<div class="container">
|
|
|
+ <section id="content">
|
|
|
+ <form action="__URL__/login" method="post">
|
|
|
+ <h1>会员登录</h1>
|
|
|
+ <div>
|
|
|
+ <input type="text" name="username" id="username" placeholder="用户名" />
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <input type="password" id="password" name="password" placeholder="密码" />
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <span class="help-block u-errormessage" id="js-server-helpinfo"> </span>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <input type="submit" value="登录" class="btn btn-primary" id="js-btn-login"/>
|
|
|
+ <a href="#">忘记密码?</a>
|
|
|
+ <!-- <a href="#">Register</a> -->
|
|
|
+ </div>
|
|
|
+ </form><!-- form -->
|
|
|
+ <div class="button">
|
|
|
+ <span class="help-block u-errormessage" id="js-server-helpinfo"> </span>
|
|
|
+ <a href="#">Power By DashGame</a>
|
|
|
+ </div> <!-- button -->
|
|
|
+ </section><!-- content -->
|
|
|
+</div>
|
|
|
+<!-- container -->
|
|
|
+</body>
|
|
|
</html>
|