mirror of
https://github.com/nextcloud/registration.git
synced 2025-07-21 23:46:44 +00:00
17 lines
357 B
PHP
17 lines
357 B
PHP
<?php
|
|
\OCP\Util::addScript('registration', 'script');
|
|
|
|
\OCP\Util::addStyle('registration', 'style');
|
|
|
|
?>
|
|
|
|
<p>Hello World <?php p($_['user']) ?></p>
|
|
|
|
<p><button id="hello">click me</button></p>
|
|
|
|
<p><textarea id="echo-content">
|
|
Send this as ajax
|
|
</textarea></p>
|
|
<p><button id="echo">Send ajax request</button></p>
|
|
|
|
Ajax response: <div id="echo-result"></div>
|