-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoptions.html
More file actions
57 lines (51 loc) · 2.46 KB
/
Copy pathoptions.html
File metadata and controls
57 lines (51 loc) · 2.46 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
<!DOCTYPE html>
<html>
<head>
<title>NoteMaker</title>
<script src="cdn/jquery-3.2.1.min.js"></script>
<script src="cdn/tether.min.js"></script>
<script src="cdn/bootstrap.min.js"></script>
<link rel="stylesheet" href="cdn/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="js/popup.js"></script>
<link rel="stylesheet" href="cdn/font_belleza.css">
<link rel="stylesheet" type="text/css" href="css/style-options.css">
</head>
<body>
<h1 class="head">NoteMaker</h1>
<div>
<div class="container signup">
<input id="username" type="text" class="form-control" placeholder="Enter Username" ><br>
<input id="email" type=text" class="form-control" placeholder="Enter Email-id" ><br>
<input id="password" type="password" class="form-control" placeholder="Enter password" ><br>
<input id="confirm-password" type="password" class="form-control" placeholder="Re-enter password" ><br>
<button id="signup-button" class="btn">Create Account</button>
</div>
<div class="container login">
<input type="text" name="username" class="form-control login_username" placeholder="Enter username"><br>
<input type="password" name="password" class="form-control login_password" placeholder="Enter Password">
<p class="valid">Enter valid username/password</p>
<br>
<button class="btn loginbtn " style="margin: 0px 70px; display: inline-block;">Login</button>
<button class="btn link_signup " style="margin: 0px auto; display: inline-block;">Signup</button>
</div>
<div class="main_part">
<div class="container ">
<br>
<p id="no_title" class="add-alert">Please add a title!</p>
<input class="form-control" type="text" id="title" class="text" placeholder="Enter Title">
<br>
<textarea id="content" class="form-control" class="text" placeholder="Enter Notes" style="max-height: 200px; min-height: 40px;"></textarea>
<br>
<input type="button" id="addbutton" class="btn btn-primary" value="Add">
<input type="button" id="removebutton" class="btn btn-primary" value="Remove ticked">
</div>
<br>
<div class="container">
<ul class="lists" style="list-style-type: none" ></ul>
</div>
<i class="fa fa-sign-out logout"></i>
</div>
</div>
</body>
</html>