22 lines
802 B
HTML
22 lines
802 B
HTML
![]() |
{% extends "layout.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
TMap API 设置
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block main %}
|
||
|
<h1>TMap API 密钥设置</h1><br>
|
||
|
<form action="{{ request.path }}" method="post">
|
||
|
<div class="uk-margin">
|
||
|
<label class="uk-form-label" for="tmap_key">TMap 应用密钥:</label>
|
||
|
<div class="uk-form-controls">
|
||
|
<input class="uk-input" id="tmap_key" name="tmap_key" type="text" value="{{ tmap_key if tmap_key }}">
|
||
|
</div>
|
||
|
</div>
|
||
|
<button class="uk-button uk-button-primary" type="submit">保存</button>
|
||
|
</form>
|
||
|
<br>
|
||
|
<div>
|
||
|
<p>申请TMap API密钥请访问: <a href="https://lbs.qq.com/" target="_blank" rel="noopener noreferrer">腾讯位置服务</a></p>
|
||
|
</div>
|
||
|
{% endblock %}
|