# Web templates for $MadelineProto->start()
You get the web template used for the $MadelineProto->start()
web UI thusly:
$template = yield $MadelineProto->getWebTemplate();
By default, it is equal to:
<!DOCTYPE html>
<html>
<head>
<title>MadelineProto</title>
</head>
<body>
<h1>MadelineProto</h1>
<form method="POST">
%s
<button type="submit"/>Go</button>
</form>
<p>%s</p>
</body>
</html>
To modify the web template, use:
yield $MadelineProto->setWebTemplate($new_template);
The new template must have a structure similar the the default template.
This site uses cookies, as described in the cookie policy. By clicking on "Accept" you consent to the use of cookies.