File size: 3,563 Bytes
53661ae
 
f8bfa1f
53661ae
 
 
f8bfa1f
 
53661ae
1a05bd6
53661ae
f8bfa1f
53661ae
f8bfa1f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53661ae
f8bfa1f
 
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
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="shortcut icon" href="AccioINTERN.png" type="image/x-icon">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
    <link rel="stylesheet" href="static/index.css">
    <title>AccioINTERN</title>
</head>

<body>
    <header>
        <nav>

        </nav>
    </header>
    <main>
        <form class="inter-form" action="/" method="post">

            <label for="name">Name:</label>
            <input type="text" id="name" name="name" required>

            <section class="automation">
                <h4>Automation</h4>
                <div class="checkbox-group">
                    <input type="checkbox" name="auto-python" id="auto-python" value="True">
                    <label for="auto-python"><i class="fa-brands fa-python" style="color: #74C0FC;"></i>Python</label>

                    <input type="checkbox" name="auto-javascript" id="auto-javascript" value="True">
                    <label for="auto-javascript"><i class="fa-brands fa-js" style="color: #FFD43B;"></i>Javascript</label>
                </div>
            </section>
            <section class="web-dev">
                <h4>Web Development</h4>
                <div class="checkbox-group">
                    <input type="checkbox" name="web-python" id="web-python" value="True">
                    <label for="web-python"><i class="fa-brands fa-python" style="color: #FFD43B;"></i>Python</label>

                    <input type="checkbox" name="web-javascript" id="web-javascript" value="True">
                    <label for="web-javascript"><i class="fa-brands fa-js" style="color: #74C0FC"></i>Javascript</label>
                </div>
            </section>
            <section class="bot-dev">
                <h4>Telegram Bot Development</h4>
                <div class="checkbox-group">
                    <input type="checkbox" name="pyrogram" id="pyrogram" value="True">
                    <label for="pyrogram"><i class="fa-solid fa-fire" style="color: #ff8040;"></i>Pyrogram</label>

                    <input type="checkbox" name="python-telegram-bot" id="python-telegram-bot" value="True">
                    <label for="python-telegram-bot"><i class="fa-brands fa-telegram" style="color: #74C0FC;"></i>PyTgBot</label>
                </div>
            </section>
            <section class="proficiency">
                <h4>Proficiency</h4>
                <div class="checkbox-group">
                    <input type="radio" name="level" id="beginner" value="Beginner">
                    <label for="beginner">Beginner</label>

                    <input type="radio" name="level" id="intermediate" value="Intermediate">
                    <label for="intermediate">Intermediate</label>

                    <input type="radio" name="level" id="expert" value="Expert">
                    <label for="expert">Expert</label>
                </div>
            </section>
            <button type="submit">Get Internship</button>

            <section class="internship">
                <pre>{{ Result }}</pre>
            </section>
        </form>
    </main>
    <footer>
    <!-- <p>&copy; 2024 TraxDinosaur. All rights reserved.</p> -->
    </footer>
</body>

</html>