Revision 191 (by ahitrov, 2012/03/15 18:22:24) Session plug-in
<& "/contenido/components/header.msn", style => 'index' &>

<div style="text-align:center; padding:180px 20px;">
% if ( $keeper->{session}->state->storage eq 'POSTGRES' ) {
<form action="./index.html" method="POST"
 onsubmit="return confirm('�� ������������� ����������� �������� ��� ���������������� ������?\n��� �������� � ��������������� ������ ������������� �� �������!')">
<input type="submit" class="input_btn" name="clear" value="������� ��� ���������������� ������">

</form>
% }
</div>

</body>
</html>
<%args>

	$clear	=> undef

</%args>
<%init>

  if ( $clear && $keeper->{session}->state->storage eq 'POSTGRES' ) {
	warn "delete from sessions\n";
	my $req = $keeper->SQL->do('delete from sessions', {}) || $keeper->t_abort();
	$m->redirect ('./');
  }

</%init>