You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
649 B
19 lines
649 B
{% extends "portal_base.html" %} |
|
|
|
{% block title %}Add Android Device{% endblock %} |
|
|
|
{% block portal_content %} |
|
<div class="portal-page-header"> |
|
<div> |
|
<h1 class="portal-page-title">Add Android Backup Device</h1> |
|
<p class="portal-page-subtitle">Create a phone backup target and generate activation token.</p> |
|
</div> |
|
</div> |
|
|
|
<form method="post"> |
|
<div style="max-width:500px;display:flex;flex-direction:column;gap:14px;"> |
|
<input type="text" name="device_name" placeholder="Phone Name (e.g. Mom Samsung A14)" required> |
|
<button class="portal-btn primary" type="submit">Create Device + Token</button> |
|
</div> |
|
</form> |
|
{% endblock %}
|
|
|