80 lines
3.8 KiB
Plaintext
80 lines
3.8 KiB
Plaintext
<%--<%@ page contentType="text/html" pageEncoding="UTF-8" %>--%>
|
|
<%@page language="java" contentType="text/html;charset=utf-8" pageEncoding="UTF-8" %>
|
|
|
|
<link rel="stylesheet" href="assets/css/form-elements.css">
|
|
<link rel="stylesheet" href="assets/css/login/style.css">
|
|
|
|
<!-- Top content style="background-image: url('assets/img/backgrounds/1.jpg')"-->
|
|
<div class="top-content" ng-controller="loginController" >
|
|
|
|
<div class="inner-bg">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-8 col-sm-offset-2 text">
|
|
<h1 style="color: #000000"><strong>ENDR Print</strong> Login</h1>
|
|
<div class="description" style="color: #000000; font-size: 20px;">
|
|
<p>
|
|
ระบบ Print ENDR
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row" >
|
|
<div class="col-sm-6 col-sm-offset-3 form-box" >
|
|
<div class="form-top" style="border: #3c3c3c; border-style: solid">
|
|
<div class="form-top-left">
|
|
<h3>เข้าสู่ระบบ</h3>
|
|
<p>กรุณากรอกรหัสผู้ใช้และรหัสผ่าน</p>
|
|
</div>
|
|
<div class="form-top-right">
|
|
<i class="fa fa-key"></i>
|
|
</div>
|
|
</div>
|
|
<div class="form-bottom" style="background-color: #3c3c3c; border: #3c3c3c; border-style: solid">
|
|
<form novalidate name="loginForm" class="login-form">
|
|
<div class="form-group">
|
|
<label class="sr-only" for="userId">Username</label>
|
|
<input
|
|
id="userId"
|
|
name="userId"
|
|
ng-model="user.userId"
|
|
|
|
required
|
|
ng-enter="doLogin(loginForm)"
|
|
|
|
type="text"
|
|
placeholder="Username..."
|
|
class="userId form-control"
|
|
>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="sr-only" for="userPassword">Password</label>
|
|
<input
|
|
id="userPassword"
|
|
name="userPassword"
|
|
ng-model="user.userPassword"
|
|
|
|
required
|
|
ng-enter="doLogin(loginForm)"
|
|
|
|
type="password"
|
|
placeholder="Password..."
|
|
class="userPassword form-control"
|
|
>
|
|
</div>
|
|
<%--<input type="button" tabindex=3 ng-click="doLogin(loginForm)" class="button" value="เข้าระบบ"/>--%>
|
|
<button type="button" ng-click="doLogin(loginForm)" class="btn">Sign in!</button>
|
|
<div class="errorMsg" style="color: #e40000">{{user.errorMsg}}</div>
|
|
<div style="font-size: 10px; text-align: right">10/10/2018</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div> |