forked from vincent3569/zpBootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword.php
More file actions
29 lines (25 loc) · 724 Bytes
/
Copy pathpassword.php
File metadata and controls
29 lines (25 loc) · 724 Bytes
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
<?php include ('inc_header.php'); ?>
<!-- .container main -->
<!-- .page-header -->
<!-- .header -->
<h3><?php echo gettext('Password required'); ?></h3>
</div><!-- .header -->
</div><!-- /.page-header -->
<div id="password" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<?php printPasswordForm('', true); ?>
<script type="text/javascript">
//<![CDATA[
$(document).ready( function($) {
$('#password').modal('show');
});
//]]>
</script>
</div>
</div>
</div>
</div>
</div><!-- /.container main -->
<?php include('inc_footer.php'); ?>