Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions src/frontend/templates/profile.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Profile</title>
<style>
body {
font-family: Arial, sans-serif;
background: #eff6ff;
margin: 0;
padding: 0;
}

.container {
width: 90%;
max-width: 700px;
margin: 40px auto;
background: white;
padding: 25px;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

input {
width: 100%;
padding: 12px;
margin-top: 10px;
border-radius: 8px;
border: 1px solid #ccc;
}

button {
width: 100%;
padding: 12px;
margin-top: 12px;
border-radius: 8px;
border: none;
background: #2563eb;
color: white;
}
</style>
</head>
<body>
<div class="container">
<h1>User Profile</h1>
<input type="text" placeholder="Full Name" />
<input type="email" placeholder="Email Address" />
<input type="text" placeholder="Monthly Budget Goal" />
<button>Save Profile</button>
</div>
</body>
</html>