-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="resources/common.css" type="text/css">
<script type="text/javascript" src="src/login.js"></script>
</head>
<body>
<div id="loginDiv">
<div class="btn-group">
<button class="btn-primary">Sign in with Facebook</button>
<button class="btn-primary">Sign in with Google+</button>
</div>
<form method="post" target="welcome" action="src/welcome.html">
<div class="form-group">
<label for="userName">Email</label>
<input type="email" id="userName" class="form-control"></input>
</div>
<div class="form-group">
<label for="pwd" id="pwdLabel">Password
<a href="" id="forgotPwd">Forgot Password</a></label>
<input type="password" id="pwd" class="form-control"></input>
</div>
<div class="checkbox">
<label for="rem"><input id ="rem" type="checkbox">Remember me</label>
</div>
<button type="submit" class="btn btn-primary btn-block" id="submitBtn" onclick="submitBtnClicked()">Submit</button>
</form>
<p id="signUp">New to ConnectV? <a href="">Create an account.</a></p>
</div>
</body>
</html>