File size: 2,992 Bytes
9ea1183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<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>