-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·56 lines (55 loc) · 1.8 KB
/
index.html
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
<head>
<title>Domer Doors</title>
<!--These two links are for bootstrap -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Domer Doors</h1>
</div>
<div class="row">
<div class="col-sm-6">
<h3>Welcome to the Domer Doors App!</h3>
<form action="login.php" method="post">
Enter your netID: <input class="form-control" type="textbook" name="netID" placeholder="hpotter1"><br>
Enter your password: <input class="form-control" type="password" name="password"><br>
<input class="btn btn-primary" type="submit" name="login" value="Login"/>
</form><br>
<!--
<form action="login.php" method="post">
<div class="form-group">
<label for="netID" class="col-sm-2 control-label">NetID</label>
<div class="col-sm-12">
<input type="text" class="form-control" id="netID" placeholder="jkRollin1">
</div>
</div>
<div class="form-group">
<label for="password" class="col-sm-2 control-label">Password</label>
<div class="col-sm-12">
<input type="password" class="form-control" id="password">
</div>
</div>
<div class="form-group">
<div class="col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-10">
<button type="submit" class="btn btn-default">Sign in</button>
</div>
</div>
</form>-->
<p>New User?</p>
<a href="newUser.php"><p class="btn btn-default">Create new Account</p></a>
</div>
</div>
</div>
</body>