-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainPage.php
More file actions
98 lines (62 loc) · 2.61 KB
/
Copy pathmainPage.php
File metadata and controls
98 lines (62 loc) · 2.61 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
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
<?php session_start();
?>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="styles/notestyle.css" type="text/css">
</head>
<body>
<nav role="navigation" class="navbar navbar-custom navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a href="#" class="navbar-brand">Online Notes</a>
<button type="button" class="navbar-toggle" data-target="#navbarCollapse" data-toggle="collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"> </span>
<span class="icon-bar"></span>
<span class="icon-bar"> </span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbarCollapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Profile</a> </li>
<li><a href="#">My Notes</a> </li>
<li><a href="#">Contact us</a> </li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Logged in as <b><?php echo $_SESSION['username'];?></b></a> </li>
<li><a href="#">Logout</a> </li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-offset-3 col-md-6">
<div class="buttons">
<button id="addNote" type="button" class="btn btn-info btn-lg">Add Note</button>
<button id="edit" type="button" class="btn btn-info btn-lg pull-right">Edit</button>
<button id="done" type="button" class="btn green btn-lg pull-right">Done</button>
<button id="allNotes" type="button" class="btn btn-info btn-lg">All Notes</button>
</div>
</div>
</div>
<div id="notePad">
<textarea rows="10" id="notetextarea"></textarea>
</div>
<div id="notes" class="notes">
<!--Ajax call here to php file-->
<h1>Neshto si</h1>
</div>
</div>
<div class="footer">
<p>This is a footer,Copyright <?php $today=date("Y");echo $today; ?></p>
</div>
<!-- jQuery CDN -->
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<!-- Bootstrap Js CDN -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/notejavascript.js"></script>
</body>
</html>