web: idk profile page ... sorry

This commit is contained in:
rezazfn 2025-02-17 00:38:50 +08:00
parent 7d2f408de0
commit 2dcc1d7381
4 changed files with 108 additions and 0 deletions

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RiderProjectSettingsUpdater">
<option name="singleClickDiffPreview" value="1" />
<option name="vcsConfiguration" value="3" />
</component>
</project>

55
Web/public/.idea/workspace.xml generated Normal file
View file

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AutoImportSettings">
<option name="autoReloadType" value="SELECTIVE" />
</component>
<component name="ChangeListManager">
<list default="true" id="894f9b22-d5a1-46d5-9153-c8d0f3e9f4e5" name="Changes" comment="" />
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/../.." />
</component>
<component name="ProjectColorInfo"><![CDATA[{
"associatedIndex": 6
}]]></component>
<component name="ProjectId" id="2t878h0xAZRJsRYk3bMOLhmfKE8" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent"><![CDATA[{
"keyToString": {
"RunOnceActivity.ShowReadmeOnStart": "true",
"git-widget-placeholder": "main",
"node.js.detected.package.eslint": "true",
"node.js.detected.package.tslint": "true",
"node.js.selected.package.eslint": "(autodetect)",
"node.js.selected.package.tslint": "(autodetect)",
"nodejs_package_manager_path": "npm",
"vue.rearranger.settings.migration": "true"
}
}]]></component>
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="894f9b22-d5a1-46d5-9153-c8d0f3e9f4e5" name="Changes" comment="" />
<created>1739721691032</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1739721691032</updated>
<workItem from="1739721692659" duration="470000" />
</task>
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" />
</component>
<component name="UnityProjectConfiguration" hasMinimizedUI="false" />
<component name="VcsManagerConfiguration">
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="true" />
</component>
</project>

BIN
Web/public/png/default-pfp.png (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Profile Page</title>
</head>
<body>
<!-- Navbar -->
<!-- Profile -->
<div id="profile">
<div>
<img
id="profilepic"
src="png/default-pfp.png"
alt="Profile Picture"
/>
<h2 id="username">Username</h2>
<p id="email">Email</p>
</div>
</div>
<!-- Reset password option -->
<!-- Statistics -->
<div id="statistics">
<h2> Most Recent Game Statistics </h2>
</div>
<!-- Choices Made -->
<div>
<h3>Choices Made</h3>
<ul id="choices-list">
<li>Day 1: Cleaned the bedroom, swept the floor, did not brush teeth, went to school</li>
<li>Day 2: Did not go to school</li>
<li>Day 3: Stayed in bedroom </li>
<li>Day 4: Chose to seek help, got good ending </li>
</ul>
</div>
</body>
</html>