38 lines
886 B
Text
38 lines
886 B
Text
|
|
[%# Interface for screening new accounts for spam content.
|
||
|
|
#
|
||
|
|
# Authors:
|
||
|
|
# Jen Griffin <kareila@livejournal.com>
|
||
|
|
#
|
||
|
|
# Copyright (c) 2020 by Dreamwidth Studios, LLC.
|
||
|
|
#
|
||
|
|
# This program is free software; you may redistribute it and/or modify it
|
||
|
|
# under the same terms as Perl itself. For a copy of the license, please
|
||
|
|
# reference 'perldoc perlartistic' or 'perldoc perlgpl'.
|
||
|
|
#
|
||
|
|
%]
|
||
|
|
|
||
|
|
[%- sections.title='.title' | ml -%]
|
||
|
|
|
||
|
|
[%- CALL dw.active_resource_group( "foundation" ) -%]
|
||
|
|
|
||
|
|
[%- INCLUDE components/errors.tt
|
||
|
|
errors = success
|
||
|
|
style = 'success' -%]
|
||
|
|
|
||
|
|
<form method=post>
|
||
|
|
[% dw.form_auth %]
|
||
|
|
|
||
|
|
<p>[% '.intro' | ml %]</p>
|
||
|
|
|
||
|
|
[% form.submit( name = 'begin', value = dw.ml( '.button.begin' ) ) %]
|
||
|
|
|
||
|
|
[%- IF can_suspend -%]
|
||
|
|
<hr />
|
||
|
|
|
||
|
|
<p>[% '.intro.suspend' | ml %]</p>
|
||
|
|
|
||
|
|
[% form.submit( name = 'suspend', value = dw.ml( '.button.suspend' ) ) %]
|
||
|
|
[%- END -%]
|
||
|
|
|
||
|
|
</form>
|