ASP Classic blog framework - BrainOrdure
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
1.0KB

  1. <div class="row">
  2. <div class="col-lg-10 col-xl-8">
  3. <div class="card shadow-sm">
  4. <div class="card-body">
  5. <h1 class="h3 mb-2">AI Prompt Settings</h1>
  6. <p class="text-muted mb-4">Edit the template used when generating AI post content.</p>
  7. <form method="post" action="<%= AdminAIPromptUpdateUrl() %>">
  8. <div class="mb-3">
  9. <label class="form-label" for="PromptTemplate">Prompt Template</label>
  10. <textarea class="form-control" id="PromptTemplate" name="PromptTemplate" rows="14" spellcheck="false"><%= H(promptTemplate) %></textarea>
  11. <div class="form-text">
  12. Placeholders: <code>{TITLE}</code>, <code>{SUMMARY}</code>, <code>{BODY}</code>
  13. </div>
  14. </div>
  15. <div class="d-flex flex-wrap gap-2">
  16. <button class="btn btn-primary" type="submit">Save Prompt</button>
  17. <a class="btn btn-outline-secondary" href="<%= AdminUrl() %>">Cancel</a>
  18. </div>
  19. </form>
  20. </div>
  21. </div>
  22. </div>
  23. </div>

Powered by TurnKey Linux.