You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/simple-website-example/README.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,10 @@
2
2
3
3
This is a very simple example of a website that uses the SQLPage web application framework.
4
4
5
-
This website illustrates how to create a very Create-Read-Update-Delete (CRUD) application using SQLPage:
6
-
- It displays a list of names
7
-
- It allows to add a new name to the list through a form
8
-
- It allows to delete a name from the list by clicking on a link
5
+
This website illustrates how to create a very Create-Read-Update-Delete (CRUD) application using SQLPage.
6
+
It has the following bsic features:
7
+
8
+
- Displays a list of user names using the [list component](https://sql.ophir.dev/documentation.sql?component=list#component) (in [`index.sql`](./index.sql#L14-L20))
9
+
- Add a new user name to the list through a form (in [`index.sql`](./index.sql#L1-L9))
10
+
- View an user's personal page by clicking on a name in the list (in [`user.sql`](./user.sql))
11
+
- Delete an user from the list by clicking on the delete button in the user's personal page (in [`delete.sql`](./delete.sql))
0 commit comments