tsk-5: Add profile page (#12)

Closes #5

Reviewed-on: phoenix/textsender#12
This commit was merged in pull request #12.
This commit is contained in:
2026-07-01 23:56:22 -04:00
parent f2bdb60d55
commit be1238e24d
5 changed files with 229 additions and 9 deletions
+41
View File
@@ -0,0 +1,41 @@
.profile-form {
max-width: 400px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: #ffffff;
}
.profile-form h2 {
text-align: center;
margin-bottom: 20px;
}
.profile-form form {
display: flex;
flex-direction: column;
}
.profile-form div {
margin-bottom: 15px;
}
.profile-form label {
font-weight: bold;
margin-bottom: 5px;
display: block;
}
.profile-form input[type='text'],
.profile-form input[type='tel'] {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
.profile-form input[readonly] {
background-color: #f9f9f9;
}