LJSUP-17669: Login.bml form refactoring
[livejournal.git] / htdocs / post_qotd.bml
blob25c65766597d4ea047dfd04f428af3cfeae77409
1 <?page
2 body<=
3 <?_code
5     use strict;
6     use vars qw(%GET %POST $title $headextra @errors @warnings);
8     my $u = LJ::load_user($GET{user});
9     $u = LJ::get_remote() unless $u;
11     return "<?needlogin?>" unless $u;
13     my @questions = LJ::QotD->get_questions( user => $u, skip => 0 );
15     # redirect to the update page with the most recent QotD filled in
16     if (@questions) {
17         my $url = LJ::Widget::QotD->answer_url($questions[0]);
18         return BML::redirect($url);
19     }
21     return BML::redirect("$LJ::SITEROOT/");
23 _code?>
24 <=body
25 title=><?_code return $title; _code?>
26 head<=
27 <?_code return $headextra; _code?>
28 <=head
29 page?>