From b605b79b2ae2f5b9837908ab7ad6ea8d0d22124b Mon Sep 17 00:00:00 2001 From: Serge Kravchenko <55243765+LeeTovetz@users.noreply.github.com> Date: Fri, 3 Feb 2023 21:03:48 +0200 Subject: [PATCH 1/3] Create README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..1218b663 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# project-front + +**Mini-project 03 on the topic: HTML, CSS, JS, jQuery by JavaRush University**
+ +Task: We need to make a UI for CRUD backend, using HTML, CSS, JS, jQuery.
+We will make an admin panel to manage online game accounts.
+ +To do this:
+- Make a fork from the repository; +- Download your version of the project to your computer; +- Download Tomcat; +- Add HTML, CSS, JS, jQuery; +- Pour the changes into your GitHub repository and send the link to it to your teacher.
From 760e85f52fe5d42d3e567d57eadf2fec742a9874 Mon Sep 17 00:00:00 2001 From: Serge Kravchenko <55243765+LeeTovetz@users.noreply.github.com> Date: Fri, 3 Feb 2023 21:09:13 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1218b663..72c095be 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,6 @@ We will make an admin panel to manage online game accounts.
To do this:
- Make a fork from the repository; - Download your version of the project to your computer; -- Download Tomcat; +- Download and install Tomcat; - Add HTML, CSS, JS, jQuery; - Pour the changes into your GitHub repository and send the link to it to your teacher.
From b2793faff5d4b260b1f3cf737dc49eb2852907d6 Mon Sep 17 00:00:00 2001 From: Serge Kravchenko <0634380033@ukr.net> Date: Fri, 10 Feb 2023 00:27:15 +0200 Subject: [PATCH 3/3] added HTML, CSS added HTML, CSS --- src/main/webapp/css/my.css | 16 ++ src/main/webapp/html/my.html | 312 ++++++++++++++++++++++++++++++++++- 2 files changed, 327 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/css/my.css b/src/main/webapp/css/my.css index e69de29b..fb78fc30 100644 --- a/src/main/webapp/css/my.css +++ b/src/main/webapp/css/my.css @@ -0,0 +1,16 @@ +body { + font-family: Arial, Verdana, sans-serif; + font-size: 14px; + background-color: #F5FFFA; + color: #708090; +} +h1 { + color: #CD5C5C; + font-size: 24px; + font-family: Georgia, Times, serif; + font-weight: normal; +} +th, td { + border: 1px solid black; + padding: 2px; +} \ No newline at end of file diff --git a/src/main/webapp/html/my.html b/src/main/webapp/html/my.html index eb66ac55..6c51ac3e 100644 --- a/src/main/webapp/html/my.html +++ b/src/main/webapp/html/my.html @@ -4,8 +4,318 @@ - +

RPG admin panel

+ + + + + + + + + + + + + + + + +
#NameTitleRaceProfessionLevelBirthdayBannedEditDelete
+ +
Pages:
+ +
+

Create new account:

+ + +

+ + + +

+ + + +

+ + + +

+ + + +

+ + + +

+ + + +

+ + + + + + + \ No newline at end of file