botserver/web/app/index.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

24 lines
No EOL
507 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>General Bots</title>
</head>
<body>
<link rel="stylesheet" href="public/output.css" />
<link rel="stylesheet" href="client-nav.css" />
<app></app>
<script src="app.html" type="riot"></script>
<script src="https://unpkg.com/riot@10/riot+compiler.min.js"></script>
<script>
riot.compile().then(() => {
riot.mount('app', {
title: 'General Bots',
})
})
</script>
</body>
</html>