Files
danbooru/app/views/users/_sign_up_notice.html.erb
2018-10-22 17:19:32 -07:00

16 lines
567 B
Plaintext

<div class="ui-corner-all ui-state-highlight" id="sign-up-notice">
<h1>Like the site? <%= link_to "Sign up for a free basic account!", new_user_path, id: "sign-up-link" %></h1>
<p><%= link_to "No thanks", "#", :id => "hide-sign-up-notice" %></p>
</div>
<% content_for(:html_header) do %>
<script>
$(function() {
if (typeof window.mixpanel === 'object') {
window.mixpanel.track_links('#sign-up-link', 'clicked sign up');
window.mixpanel.track_links('#hide-sign-up-notice', 'hide sign up notice');
}
});
</script>
<% end %>