20 lines
404 B
Plaintext
20 lines
404 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Dooraccess</title>
|
|
<%= stylesheet_link_tag "application", :media => "all" %>
|
|
<%= javascript_include_tag "application" %>
|
|
<%= csrf_meta_tags %>
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<a href="/users">Users</a>
|
|
<a href="/door_logs">Logs</a>
|
|
</div>
|
|
<p class="notice"><%= notice %></p>
|
|
<p class="alert"><%= alert %></p>
|
|
<%= yield %>
|
|
|
|
</body>
|
|
</html>
|