You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.4 KiB

10 years ago
% layout 'default';
% title 'Zerobin -- View';
% my %times = (day => 1, week => 7, month => 30, quarter => 90, year => 395);
% my @times = map { [l($_) => $times{$_}] } sort { $times{$a} <=> $times{$b} } keys(%times);
% param 'expire' => 30;
% my $syntax = stash('syntax') || [];
% param 'syntax' => '';
% my %opts = (id => 'paste', name => 'paste');
10 years ago
<h1>Создать запись</h1>
<div>
<%= form_for "/zerobin" => (method => 'POST', enctype => "multipart/form-data") => begin %>
<div>
10 years ago
<span class="zerobin cblock">
<%= tag 'label' => (for => 'expire') => l('Keep for') %>:
<%= select_field 'expire' => \@times %>&nbsp;
10 years ago
</span>
<span class="zerobin cblock">
<%= tag 'label' => (for => 'syntax') => l('Format') %>:
<%= select_field 'syntax' => $syntax %>
10 years ago
</span>
</div>
<p>
<input type="radio" name="source" value="form" checked="1">Копипаст &darr;&darr;&darr;</input>
<input type="radio" name="source" value="file">или файл &rarr;</input>&nbsp;
<input type="file" name="file" id="upload">
</p>
<div>
<%= tag 'textarea' => (placeholder => l('Paste your text here'), %opts) => '' %>
</div>
<p><%= submit_button l('Save') %></p>
<% end %>
10 years ago
</div>
% my $result = (flash 'result') || '';
% if ($result) {
<div>
<p style="color: red; font-size: 14pt;"><%= l(ucfirst($result)) %></p>
</div>
% }