File indexing completed on 2024-12-29 05:24:48

0001 <?php 
0002 /**
0003  *  ocs-webserver
0004  *
0005  *  Copyright 2016 by pling GmbH.
0006  *
0007  *    This file is part of ocs-webserver.
0008  *
0009  *    This program is free software: you can redistribute it and/or modify
0010  *    it under the terms of the GNU Affero General Public License as
0011  *    published by the Free Software Foundation, either version 3 of the
0012  *    License, or (at your option) any later version.
0013  *
0014  *    This program is distributed in the hope that it will be useful,
0015  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
0016  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0017  *    GNU Affero General Public License for more details.
0018  *
0019  *    You should have received a copy of the GNU Affero General Public License
0020  *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
0021  **/
0022 ?>
0023 <div class="panel-heading">
0024     <h4 class="panel-title">
0025         <a data-toggle="collapse" href="#delete-collapse" data-parent="#accordion" id="delete-trigger">
0026             <span class="glyphicon glyphicon-trash"></span>
0027             <?= $this->translate('Delete account') ?>
0028             <span class="absolute glyphicon glyphicon-chevron-down"></span>
0029         </a>
0030     </h4>
0031 </div>
0032 
0033 <div class="panel-collapse collapse" id="delete-collapse">
0034     <div class="panel-body">
0035         <form class="standard-form well partial" action=""
0036               method="" data-target="#form-delete"
0037               data-trigger="#delete-trigger">
0038             <div class="row">
0039                 <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
0040                     <p><?= $this->translate('Once you delete your account, there is no going back. Please be certain.') ?></p>
0041                 </div>
0042             </div>
0043             <hr>
0044             <div class="row">
0045                 <a href="#modalDeleteUser" data-toggle="modal" role="btn"
0046                    class="btn btn-danger pull-right margin-right-5"
0047                    tabindex="30"><?= $this->translate('Delete your account') ?></a>
0048             </div>
0049         </form>
0050         <!-- /.standard-form -->
0051     </div>
0052     <!-- /.section-body -->
0053 </div>
0054 <div id="modalDeleteUser" class="modal hide fade" aria-hidden="true" style="display: none;">
0055     <div class="modal-dialog content-modal">
0056         <div class="modal-content">
0057             <!-- dialog contents -->
0058             <div class="modal-header">
0059                 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
0060                 <h3 class="center"><?= $this->translate('Delete Confirmation') ?></h3>
0061             </div>
0062             <div class="modal-body"><?= $this->translate('Do you really want to delete your account?') ?></div>
0063             <!-- dialog buttons -->
0064             <div class="modal-footer">
0065                 <a href="/settings/delete/" role="button" class="btn btn-primary"><?= $this->translate('YES') ?></a>
0066                 <a href="#" role="button" class="btn btn-primary" data-dismiss="modal"
0067                    aria-hidden="true"><?= $this->translate('NO') ?></a>
0068             </div>
0069         </div>
0070     </div>
0071 </div>