gemini-login/x.cgi

16 lines
336 B
Python

#!/usr/bin/env python3
# modules are all in the parent directory
import sys
# sys.path.append('..')
# import helpers from modules
from helpers import get_query_string, get_client_cert
user_name = get_query_string("What is your name?")
print("20 text/gemini")
print(user_name)
#vim:fenc=utf-8:ts=4:sw=4:sta:noet:sts=4:fdm=marker:ai