diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2013-08-30 23:21:42 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2013-08-30 23:30:52 +0200 |
commit | 143f638a4b1bafdc4a2a811a9f4c97a5392a0acc (patch) | |
tree | a3f5e445ef7c597c25890b57b1b224504746405d /templates/login.tmpl | |
parent | 3c42d5d76da5eda2ce6bedd954269161259b2289 (diff) |
Added settings for registrations and uploads.
* create_active_users:
Controls whether new user accounts are created as 'active'; accounts
that are not marked as active will not be able to log in, and will be
automatically logged out if they're already logged in.
* allow_registration:
Allow or disallow creation of new user accounts. Any attempts to
access the registration page will result in an error message.
* allow_anonymous_uploads:
Allow or disallow uploading of files by anonymous (not logged in)
users. Combined with either allow_registration or create_active_users,
this will effectively create a private filebin where the admin must
explicitly create or activate new users.
Diffstat (limited to 'templates/login.tmpl')
-rw-r--r-- | templates/login.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/login.tmpl b/templates/login.tmpl index 7638c07..e55600d 100644 --- a/templates/login.tmpl +++ b/templates/login.tmpl @@ -4,7 +4,7 @@ #def content #set error = $error or '' <div class="error">$error</div> - <form method="post" action="${root}l"> + <form method="post" action="${settings.virtual_root}l"> #if next <input type="hidden" name="next" value="$next" /> #end if |