bashtube/webroot/logout.shs

15 lines
324 B
Plaintext
Raw Normal View History

#!/bin/bash
2021-02-28 17:43:40 +01:00
declare -A strings
logout
meta[redirect]='/'
#source templates/head.sh
source "${cfg[namespace]}/templates/header.shs"
if [[ ${cfg[template]} != 'retro' ]]; then
2023-04-20 00:12:34 +02:00
echo "<h1>Logged out successully.</h1><p>Redirecting...</p>"
2021-02-28 17:43:40 +01:00
fi
render strings "${cfg[namespace]}/templates/themes/${cfg[template]}/logout.html"