botserver/web/app/settings/page.html
Rodrigo Rodriguez (Pragmatismo) dfe7e4e4b6 Add About and Login pages with responsive design and user authentication
- Created a new About page (index.html) detailing the BotServer platform, its features, and technology stack.
- Developed a Login page (login.html) with sign-in and sign-up functionality, including form validation and user feedback messages.
- Removed the empty style.css file as it is no longer needed.
2025-10-26 00:02:19 -03:00

20 lines
489 B
HTML

<!-- Riot.js component for the settings page (converted from app/settings/page.tsx) -->
<template>
<div class="space-y-6">
<div>
<h2 class="text-lg font-medium">Profile</h2>
<p class="text-sm text-gray-500"></p>
</div>
<div class="border-t border-gray-200 my-4"></div>
<profile-form></profile-form>
</div>
</template>
<script type="module">
import './profile-form.html';
import './style.css';
export default {
// No additional state needed
};
</script>