-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo_app_mvc.html
62 lines (53 loc) · 1.96 KB
/
todo_app_mvc.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
<!DOCTYPE html>
<html>
<head>
<title>Employee Management System</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1" />
<link href="https://fonts.googleapis.com/css2?family=Russo+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="default.css">
<!-- <link id="theme-style" rel="stylesheet" type="text/css" href=""> -->
</head>
<body>
<div class="nav-wrapper"> <!-- This is a flexbox-->
<div class="dots-wrapper">
<div id="dot-1" class="browser-dot"></div>
<div id="dot-2" class="browser-dot"></div>
<div id="dot-3" class="browser-dot"></div>
</div>
<ul id="navigation">
<li><a href="index.html#contact">Contact</a></li>
</ul>
</div>
<div class="main-container">
<h3>To-to List App</h3>
<hr />
<p style="margin-bottom: 20px;">
This Web application was created using ASP.NET Core MVC with Entity Framework Core 6. The App allows us to create, update, and delete our to-do list.
In Addition, user authentication was implemented in this project. The user will only access his/her own to-do list.
</p>
<div style="margin:auto;width: 80%;">
<img style="width: 70%;" src="images/todo-app/ui-1.PNG" />
</div>
<div>
<p>The following are the features of the App.</p>
<ul>
<li>* User Authentication</li>
<li>* Perform CRUD Operation for your to-do items.</li>
</ul>
</div>
<div>
<p>Technologies used:</p>
<ul>
<li>* ASP.NET Core MVC 6</li>
<li>* Entity Framework Core 6</li>
<li>* SQL Server</li>
</ul>
</div>
<p>If you are curious about this simple project, you can freely clone the app repository on GitHub:<br />
<a target="_blank" href="https://github.com/MaarufB/todoAppMVCAuth">Get the source code!</a>
</p>
</div>
<!-- <script type="text/javascript" src="script.js"></script> -->
</body>
</html>