Log Monitoring - upload page

by lasha

HTML

<h2>Data Sources</h2>
<table>
    <thead>
        <th>Name</th>
        <th>Progress</th>
    </thead>
    <tbody>
        <tr>
            <td>Data source 1 name</td>
            <td>progress bar...</td>
        </tr>
        <tr>
            <td>Data source 1 name</td>
            <td>add --- search</td>
        </tr>
    </tbody>
</table>

<hr>
<h2>Select Source</h2>
<div>
    <div>
        <label for="">
            <input type="radio" name="selectSource"/>
            Local Path
        </label><br>
        Something here: <input type="file" multiple />
    </div>
    <div>
        <label for="">
            <input type="radio" name="selectSource"/>
            UNC
        </label><br>
        UNC Path: <input type="text" placeholder="Enter path here..."/>
    </div>
</div>

<h2>Select Policy</h2>
<div>
    <div>
        <label for="">
            <input type="radio" name="selectPolicy"/>
            Create New Policy
        </label><br>
        Policy Name: <input type="text"/><br>
        Type: <select name="" id="">
                <option value="">1</option>
                <option value="">2</option>
                <option value="">3</option>
                <option value="">4</option>
                <option value="">5</option>
              </select>
    </div>
    <div>
        <label for="">
            <input type="radio" name="selectPolicy"/>
            Add to Existing
        </label><br>
        <select name="" id="">
            <option value="">Policy XYZ</option>
            <option value="">2</option>
            <option value="">3</option>
            <option value="">4</option>
            <option value="">5</option>
        </select>
        <div class="">Template columns preview</div>
    </div>
</div>
        
<h2>Confirmation</h2>
<div>
    Congrats! Ready to be uploaded!
</div>

<hr>

To begin indexing, click upload.<br>
<input type="button" value="cancel">
<input type="button" value="upload">