-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (63 loc) · 3.23 KB
/
index.html
File metadata and controls
70 lines (63 loc) · 3.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
62
63
64
65
66
67
68
69
70
-<!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" />-->
<!-- Material Design fonts -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Bootstrap Material Design -->
<link rel="stylesheet" type="text/css" href="https://ahanuschak.com/cis4301/css/bootstrap-material-design.css">
<link rel="stylesheet" type="text/css" href="https://ahanuschak.com/cis4301/css/ripples.min.css">
<title>CellCheck - Home</title>
<style type="text/css">
* { margin: 0; padding: 0; }
p { margin-top: 5%;padding: 0px; }
.left { position: absolute; left: 0; top: 0; width: 70%; height: 100%; background-image:url("images/index.jpg"); background-size:100% 100%; vertical-align: middle;}
.left-inner{width: 70%; margin: 0 auto;}
.center{position:absolute; top:33%; width: 70%}
.right { position: absolute; right: 0; top: 0; width: 30%; height: 100%; background: #49B24E}
</style>
<link rel="stylesheet" type="text/css" href="https://ahanuschak.com/cis4301/kekmon.css">
</head>
<body>
<div class = "left">
<div class = "left-inner">
<div class = "center" style="border-radius:10px;">
<h1 style="color:white">Welcome to CellCheck</h1>
<h3 style="color:#d3d3d3">Register for an account to start</h3>
<p style="color:#aaa"; >CellCheck aims to provide users with quick
access to data plans offered by AT&T, Verizon, Sprint and T-Mobile. In
addition to this, users will be able to compare prices and services
between the four major providers. Users benifit from quick access time
thanks to our optimised use of an SQL database. Once a user selects a
plan, they will be able to view the specific coverage from the area
closet to them.</p>
<a href="register.html" class="btn btn-raised btn-success">REGISTER HERE</a>
</div>
</div>
</div>
<div class = "right">
<div class = "left-inner">
<div class = "center" style="float:left;">
<h3 style="color: white">Or log in to you account</h3>
<form action="login.php" method="post">
<div class="form-group label-floating">
<input style="color:white" type="text" class="form-control" placeholder="Username" name="username">
</div>
<div class="form-group label-floating">
<!-- <label class="control-label" for="focusedInput1">Password</label> -->
<input type="password" class="form-control" placeholder="Password" name="password">
</div>
<div class="form-group label-floating">
<input type="submit" class="btn btn-raised btn-default">
</div>
<p><a href="forgotPassword.html" style="color:#d3d3d3">Forgot Password?</a></p>
<p><a href="providers.php" style="color:#d3d3d3">Or use a temporary guest account</a></p>
</form>
</div>
</div>
</div>
</body>
</html>