Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Add Information - RAG Bio Generator</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| max-width: 800px; | |
| margin: 0 auto; | |
| padding: 20px; | |
| } | |
| .container { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 20px; | |
| } | |
| .form-group { | |
| margin-bottom: 15px; | |
| } | |
| label { | |
| display: block; | |
| margin-bottom: 5px; | |
| font-weight: bold; | |
| } | |
| input, textarea { | |
| width: 100%; | |
| padding: 8px; | |
| border: 1px solid #ddd; | |
| border-radius: 4px; | |
| } | |
| textarea { | |
| min-height: 300px; | |
| } | |
| .btn { | |
| display: inline-block; | |
| background-color: #007bff; | |
| color: white; | |
| padding: 10px 15px; | |
| text-decoration: none; | |
| border-radius: 5px; | |
| border: none; | |
| cursor: pointer; | |
| } | |
| .btn:hover { | |
| background-color: #0056b3; | |
| } | |
| .btn-secondary { | |
| background-color: #6c757d; | |
| } | |
| .btn-secondary:hover { | |
| background-color: #5a6268; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h1>Add Information</h1> | |
| <form method="post"> | |
| <div class="form-group"> | |
| <label for="title">Title</label> | |
| <input type="text" id="title" name="title" placeholder="e.g., My Professional Experience" required> | |
| </div> | |
| <div class="form-group"> | |
| <label for="content">Content</label> | |
| <textarea id="content" name="content" placeholder="Add your professional information here. Include details about your skills, experience, education, achievements, and any other relevant information. This will be used to generate your professional bio." required></textarea> | |
| </div> | |
| <div> | |
| <button type="submit" class="btn">Save Information</button> | |
| <a href="{{ url_for('index') }}" class="btn btn-secondary">Cancel</a> | |
| </div> | |
| </form> | |
| <div> | |
| <h2>Tips for Better Results</h2> | |
| <ul> | |
| <li>Include your skills, years of experience, and areas of expertise</li> | |
| <li>Add details about notable projects and achievements</li> | |
| <li>Mention education, certifications, and relevant training</li> | |
| <li>Describe your work style and professional values</li> | |
| <li>Include any industry awards or recognition</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |