Skip to content

Instantly share code, notes, and snippets.

@compilerexe
Created April 26, 2017 01:17
Show Gist options
  • Save compilerexe/75ab7156f8f10ac403fa329ba469f2e3 to your computer and use it in GitHub Desktop.
Save compilerexe/75ab7156f8f10ac403fa329ba469f2e3 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Blank App</title>
<link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css">
<style>
#page {
background-color: #4d4d4d;
}
label {
color: #FFFFFF;
}
</style>
</head>
<body>
<div data-role="page" data-transition="fade" id="page">
<div data-role="header">
<a href="index.html" class="ui-btn ui-corner-all ui-shadow ui-icon-home ui-btn-icon-left">หน้าแรก</a>
<h1>Agoda</h1>
<a href="signup.html" class="ui-btn ui-corner-all ui-shadow ui-btn-icon-left">ลงทะเบียน</a>
</div>
<div data-role="main" class="ui-content">
<div class="ui-grid-solo">
<div class="ui-block-a">
<marquee style="color: #FFFFFF;">จองโรงแรมกับเรามีโปรโมชั่นมากมาย สมัครเลย ...</marquee>
<form action="#" method="post" style="margin-top: 10px;">
<label for="username" style="margin-bottom: 10px; font-size: 24px; color: yellow; font-weight: bold;">สมาชิก</label>
<label for="username">ชื่อผู้ใช้งาน</label>
<input type="text" name="username">
<label for="password">รหัสผ่าน</label>
<input type="password" name="password">
<button type="submit" class="ui-btn ui-shadow" style="margin-top: 20px;">เข้าสู่ระบบ</button>
</form>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/jquery-2.2.4.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.4.5.min.js"></script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Blank App</title>
<link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css">
<style>
#page {
background-color: #4d4d4d;
}
label {
color: #FFFFFF;
}
</style>
</head>
<body>
<div data-role="page" data-transition="fade" id="page">
<div data-role="header">
<a href="index.html" class="ui-btn ui-corner-all ui-shadow">ย้อนกลับ</a>
<h1>Agoda</h1>
<!-- <a href="index.html" class="ui-btn ui-corner-all ui-shadow ui-btn-icon-left">Sign In</a> -->
</div>
<div data-role="main" class="ui-content">
<div class="ui-grid-solo">
<div class="ui-block-a">
<marquee style="color: #FFFFFF;">จองโรงแรมกับเรามีโปรโมชั่นมากมาย สมัครเลย ...</marquee>
<form action="#" method="post" style="margin-top: 10px;">
<label for="username" style="margin-bottom: 10px; font-size: 24px; color: yellow; font-weight: bold;">ลงทะเบียนใหม่</label>
<label for="username">ชื่อผู้ใช้งาน</label>
<input type="text" name="username">
<label for="password">รหัสผ่าน</label>
<input type="password" name="password">
<label for="password">ยืนยันรหัสผ่าน</label>
<input type="password" name="password">
<button type="submit" class="ui-btn ui-shadow" style="margin-top: 20px;">ลงทะเบียน</button>
</form>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/jquery-2.2.4.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.4.5.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment