-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
72 lines (66 loc) · 3.22 KB
/
signup.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="title" content="Action Tracker | Project Management Tool">
<meta name="description" content="Action Tracker">
<meta name="keywords" content="Action Tracker">
<meta name="robots" content="index">
<meta name="language" content="English">
<title>Action Tracker| Management Tool</title>
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<link rel="icon" href="img/favicon.ico" type="image/x-icon" />
<!-- CSS here -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/fontawesome-all.min.css">
<link rel="stylesheet" href="css/plugin/jquery-ui.css">
<link rel="stylesheet" href="css/plugin/fullcalendar.min.css">
<link rel="stylesheet" href="css/plugin/chosen.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body id="signup-page">
<form id="signupId" class="form-signin" autocomplete="off">
<div class="sign-container">
<img src="./img/icon/logo-white.svg" alt="logo" class="img-align">
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" aria-describedby="email" placeholder="email">
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="firstname">Firstname</label>
<input type="text" class="form-control" id="firstname" placeholder="firstname">
</div>
<div class="form-group col-md-6">
<label for="lastname">Lastname</label>
<input type="text" class="form-control" id="lastname" placeholder="lastname">
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" placeholder="password">
</div>
<div class="form-group col-md-6">
<label for="confirmPassword">Confirm Password</label>
<input type="password" class="form-control" id="confirmPassword" placeholder="confirmPassword">
</div>
</div>
<button class="btn btn-lg btn-block text-uppercase" type="button" onclick="location.href='./index.html'">Sign UP</button>
</div>
</form>
<!-- JS here -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/plugin/jquery-ui.js"></script>
<script src="js/plugin/fullcalendar.min.js"></script>
<script src="js/plugin/chosen.jquery.min.js"></script>
<script src="js/calender-event.js"></script>
<script src="js/main.js"></script>
</body>
</html>