forked from humzahasan/WeTrack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addgoal.html
105 lines (98 loc) · 6 KB
/
addgoal.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/addgoal.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Set Goals</title>
</head>
<body>
<nav class="navbar navbar-dark bg-dark fixed-top navbar-expand-md">
<div class="container-fluid">
<a href="index.html" class="pull-left"><img height="82" src="./images/logo_1.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#myNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="myNav">
<ul class="nav navbar-nav ml-auto nav-fill">
<li class="nav-item mx-2">
<a href="index.html" class="nav-link text-white" style='font-size:28px'>Home</a>
</li>
<li class="nav-item mx-2">
<a href="resource.html" class="nav-link text-white" style='font-size:28px'>Resource</a>
</li>
<li class="nav-item mx-2 nav-tabs nav-pills active">
<a href="addgoal.html" class="nav-link text-white" style='font-size:28px'>Set Goal</a>
</li>
<!-- <li class="nav-item mx-2">
<a href="#" class="nav-link text-white" style='font-size:28px'>View Goal</a>
</li> -->
<li class="nav-item mx-2">
<a href="Team.html" class="nav-link text-white" style='font-size:28px'>Team</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="card" >
<img src="images/Goal.jpg" class="card-img-top" alt="">
<div class="card-body">
<h1 class="text-center" style="color:#09010c;font-family:Georgia, 'Times New Roman', Times, serif;">Keep record of your daily goals by adding them to the list.</h1>
</div>
</div>
</div>
<div class="container">
<h1 style="padding:15px;">Set your goals for today!</h1>
<div class="row" style="margin:5px;">
<div class="col-sm-8" style="background-color:rgb(247, 168, 214);">
<div class="add-to-do">
<i class="fa fa-plus-circle addtodo"></i>
<input type="text" id="input" placeholder="Add your goals here, enter to add them to list!">
</div>
<div class="header">
<div class="clear">
<i class="fa fa-refresh cbtn"></i>
</div>
<div id="date"></div>
</div>
<h2>Check Mark your completed goals.</h2>
<div class="content">
<ul id="list">
<!-- <li class="item">
<i class="fa fa-circle-thin co" job="complete" id="0"></i>
<p class="text"></p>
<i class="fa fa-trash-o de" job="delete" id="0"></i>
</li>-->
</ul>
</div>
<div id="sub_div">
<button class="btn btn-primary" id="submit">Submit</button>
</div>
</div>
<div class="col-sm-4" style="background-color: rgb(195, 216, 248);padding:3em;" id="text">
<h1 class="text-center" style="font-family: cursive;color:brown">View your Goals here in the list!!</h1>
</div>
</div>
</div>
<!-- Footer Start -->
<div class="footer text-center">
<a href="#" style="color:white"><i class="mx-3 fab fa-twitter"></i></a>
<a href="#" style="color:white"><i class="mx-3 fab fa-facebook-f"></i></a>
<a href="#" style="color:white"><i class="mx-3 fab fa-instagram"></i></a>
<a href="#" style="color:white"><i class="mx-3 fas fa-envelope"></i></a>
<p>Copyrights©2020 WeTrack</p>
</div>
<!-- Footer End -->
<script src="js/addgoal.js"></script>
</body>
</html>