mirror of
https://github.com/friendica/friendica
synced 2024-11-15 22:53:54 +00:00
30 lines
783 B
Smarty
30 lines
783 B
Smarty
{{*
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*}}
|
|
<div id="probe" class="generic-page-wrapper">
|
|
<h2>{{$title}}</h2>
|
|
<form action="probe" method="get" class="panel panel-default">
|
|
<div class="panel-body">
|
|
<div class="form-group">
|
|
{{include file="field_input.tpl" field=$addr}}
|
|
</div>
|
|
<p><button type="submit" class="btn btn-primary">{{$submit}}</button></p>
|
|
</div>
|
|
</form>
|
|
|
|
{{if $res}}
|
|
<div class="probe-result">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{{$output}}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<pre>{{$res}}</pre>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|