From 4e5d0c0628b6411e5c70b2bb42fcdb5e1fc58b10 Mon Sep 17 00:00:00 2001 From: JavaDen44 Date: Sun, 14 Aug 2022 22:36:59 +0300 Subject: [PATCH 1/2] Added a table for displaying player accounts, a function for displaying the total number of accounts, a drop-down list with a different number of accounts. --- src/main/webapp/css/my.css | 4 ++ src/main/webapp/html/my.html | 93 +++++++++++++++++++++++++++++++++++- 2 files changed, 96 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/css/my.css b/src/main/webapp/css/my.css index e69de29b..bb164593 100644 --- a/src/main/webapp/css/my.css +++ b/src/main/webapp/css/my.css @@ -0,0 +1,4 @@ +td,th{ + border: 1px solid black; + padding: 3px; +} \ No newline at end of file diff --git a/src/main/webapp/html/my.html b/src/main/webapp/html/my.html index eb66ac55..ad5483e7 100644 --- a/src/main/webapp/html/my.html +++ b/src/main/webapp/html/my.html @@ -1,11 +1,102 @@ + RPG - +

RPG admin panel

+

Accounts list:

+ + + + + + + + + + + + + + + +
#NameTitleRaceProfessionLevelBirthdayBanned
+ +
Pages:
+ + \ No newline at end of file From bfa1accdb619b573c166507f04523192689681ce Mon Sep 17 00:00:00 2001 From: JavaDen44 Date: Tue, 16 Aug 2022 00:32:08 +0300 Subject: [PATCH 2/2] =?UTF-8?q?In=20the=20function=20of=20showing=20the=20?= =?UTF-8?q?list=20of=20accounts,=20I=20added=20a=20parameter=20that=20will?= =?UTF-8?q?=20be=20responsible=20for=20the=20number=20of=20the=20page=20to?= =?UTF-8?q?=20be=20shown.=20Tinted=20the=20number=20of=20the=20current=20p?= =?UTF-8?q?age.=20Added=202=20more=20columns=20to=20the=20table:=20Edit=20?= =?UTF-8?q?and=20Delete.=20I=20wrote=20a=20function=20that=20is=20responsi?= =?UTF-8?q?ble=20for=20deleting=20an=20account.=20I=20wrote=20a=20function?= =?UTF-8?q?=20that=20is=20responsible=20for=20editing=20the=20account.=20A?= =?UTF-8?q?dded=20functionality=20for=20editing=20the=20account.=20I=20mad?= =?UTF-8?q?e=20the=20changes=20by=20clicking=20on=20the=20"Save=E2=80=9D?= =?UTF-8?q?=20button.=20Added=20blocks=20of=20text=20and=20fields=20for=20?= =?UTF-8?q?entering=20parameters=20when=20creating=20a=20new=20account.=20?= =?UTF-8?q?Added=20a=20button,=20by=20clicking=20on=20which=20all=20the=20?= =?UTF-8?q?entered=20data=20will=20be=20sent=20to=20the=20server.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/html/my.html | 224 ++++++++++++++++++++++++++++++++++- 1 file changed, 223 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/html/my.html b/src/main/webapp/html/my.html index ad5483e7..1221780a 100644 --- a/src/main/webapp/html/my.html +++ b/src/main/webapp/html/my.html @@ -27,10 +27,65 @@

Accounts list:

Level Birthday Banned + Edit + Delete
Pages:
+
+

Create new account:

+ + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +

+ + + + \ No newline at end of file