xref: /web-bugs/www/how-to-report.php (revision 80d03e3e)
1<?php
2
3/**
4 * Page with info how to report a bug.
5 */
6
7// Application bootstrap
8require_once __DIR__.'/../include/prepend.php';
9
10// Authentication
11require_once __DIR__.'/../include/auth.php';
12
13// Output template with given template variables.
14echo $template->render('pages/how_to_report.php');
15