mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
24 lines
944 B
Text
24 lines
944 B
Text
<% content_for "header" do %>
|
|
<title><%= translate(locale, "Clear watch history") %> - Invidious</title>
|
|
<% end %>
|
|
|
|
<div class="h-box">
|
|
<form class="pure-form pure-form-aligned" action="/clear_watch_history?referer=<%= URI.escape(referer) %>" method="post">
|
|
<legend><%= translate(locale, "Clear watch history?") %></legend>
|
|
|
|
<div class="pure-g">
|
|
<div class="pure-u-1-2">
|
|
<button type="submit" name="submit" value="clear_watch_history" class="pure-button pure-button-primary">
|
|
<%= translate(locale, "Yes") %>
|
|
</button>
|
|
</div>
|
|
<div class="pure-u-1-2">
|
|
<a class="pure-button" href="<%= URI.escape(referer) %>">
|
|
<%= translate(locale, "No") %>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<input type="hidden" name="csrf_token" value="<%= URI.escape(csrf_token) %>">
|
|
</form>
|
|
</div>
|