Example #1
0
?>
<div class="container main-cont">
    <div class="row">
        <div class="col-md-2 align-center">
            <h4>
                <span class="label label-default">Rutracker list</span>
            </h4>
        </div>
        <div class="col-md-6">
            <div id="info-block" class="alert alert-info" role="alert">
                <?php 
if (count($file) > 1 && array_key_exists('error', $file)) {
    echo $file['error'];
} else {
    echo 'Successfully read saved torrents from bookmark file';
    $items_from_file = $rt->compare_file_to_tracker_future_list($file, $flist);
}
?>
                </div>
        </div>
        <div class="col-md-2 col-md-offset-1 button-div align-center">
            <label for="save-btn">
                Save new items to file
                <span class="items_counter"></span>
            </label>
            <button type="button" id="save-btn" class="btn btn-default" value="Save to file">
                <span class="glyphicon glyphicon glyphicon-floppy-save color-green"></span>
                Save
            </button>
        </div>
    </div>