loading.html 2.11 KB
Newer Older
1 2 3
<!DOCTYPE html>
<html>
	<head>
4
		<title>uBus | Loading User Accounts</title>
5 6
		<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
		<link rel="stylesheet" type="text/css" href="css/style.css">
7
		<link rel="icon" type="image/x-icon" href="img/favicon.ico">
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
		<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.js"></script>
		<script src="http://www.parsecdn.com/js/parse-1.6.6.min.js"></script>
	</head>
	
	<body>
		<header>
			<nav>
				<a href="index.html"><img src="img/logo.png" width="40px"></a>

				<a href="javascript:void(0);"><img src="img/add.png" width="40px"></a>
				<a href="javascript:void(0);"><img src="img/search.png" width="40px"></a>
			</nav>
		</header>

		<div class="wrapper">
			<div class="title">
				<img src="img/scheduling.png" width="40px">
				<h1>Search User</h1>
			</div>
27
			<div class="card" id="load_card">
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
				<div class="row">
					<img src="img/scheduling.png" width="60px">
					<form method="post" class="card_schedule" id="reload">
						<fieldset style="display:block; width:100%;">
							<label style="width: 100%;"><i class="fa fa-mobile fa-5x" style="padding-left:20px;"></i>
							<input type="text" id="cellphone_number" placeholder="Cellphone Number" style="width:40%; height:40px; font-size:1em;position: relative;
							top: 50%;
							transform: translateY(-50%);
							margin-left: 30px;
							border-top:0;
							border-left: 0;
							border-right: 0;"></label>
						</fieldset>
						<fieldset style="display:block; width:100%;">
							<label style="width: 100%;"><i class="fa fa-money fa-4x" style="padding-left:5px;"></i>
							<input type="text" id="amount" placeholder="Amount" style="width:40%; height:40px; position: relative;
							top: 50%;
							transform: translateY(-50%);
							margin-left: 15px;
							border-top:0;
							border-left: 0;
							border-right: 0;"></label>
						</fieldset>
						<fieldset style="margin-top: 40px;">
							<input type="submit">
						</fieldset>
					</form>
				</div>
			</div>
			<div class="schedules"></div>
		</div>
		<script type="text/javascript" src="js/app.js"></script>
	</body>
</html>