File size: 1,426 Bytes
b912aca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{% extends 'base.html' %}

{% block content %}
<div class="card">
    <div class="card-body">
        <h1>{% block title %} Salary Rate Forecasting {% endblock %}</h1>

        <!-- Main Input For Receiving Query to our ML -->
        <form action="{{ url_for('predict')}}" method="post">
            <div class="form-group">
                <label for="exampleInputPassword1">Job Position Level</label>
                <br>
                <select class="form-select form-select-sm" aria-label=".form-select-sm example" name="comp_select">
                    <option selected>Select Position Level</option>
                    <option value="1">Junior</option>
                    <option value="2">Senior</option>
                    <option value="3">Chief Technology Officer</option>
                    <option value="4">Project Manager</option>
                </select>
            </div>
            <div class="form-group">
                <label for="exampleInputPassword1">Experience</label>
                <input type="text" class="form-control" name="experience" placeholder="Experience" required="required" />
            </div>

            <button type="submit" class="btn btn-primary">Predict Salary Rate</button>
        </form>

        <br>
        <br>
        <label for="exampleInputPassword1"> </label>{{ prediction_text }} </label>
    </div>
</div>
{% endblock %}