Skip to content
This repository was archived by the owner on Feb 25, 2021. It is now read-only.

Commit 7238642

Browse files
committed
add logo and logout functionality closes #53
1 parent c7182ee commit 7238642

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

Gemfile.lock

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,5 +236,8 @@ DEPENDENCIES
236236
uglifier (>= 1.3.0)
237237
web-console (~> 2.0)
238238

239+
RUBY VERSION
240+
ruby 2.3.0p0
241+
239242
BUNDLED WITH
240-
1.13.2
243+
1.15.0

app/assets/images/logo.png

38.1 KB
Loading

app/views/layouts/application.html.erb

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,32 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>FuzzerApp</title>
4+
<title>Fuzzapi</title>
55
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
66
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
77
<%= csrf_meta_tags %>
88
</head>
99
<body>
1010

1111
<nav class="navbar navbar-light bg-faded">
12-
<a class="navbar-brand" href="/">Fuzzapi</a>
12+
13+
<a class="navbar-brand" href="/">
14+
<%= image_tag 'logo', width: 30, height: 30, class: 'd-inline-block align-top', alt: "Fuzzapi Logo" %>
15+
Fuzzapi
16+
</a>
17+
1318
<ul class="nav navbar-nav">
1419
<li class="nav-item active">
15-
<a class="nav-link" href="/scans">Scans <span class="sr-only">(current)</span></a>
20+
<a class="btn" href="/scans">Scans <span class="sr-only">(current)</span></a>
1621
</li>
1722
</ul>
18-
<form class="form-inline pull-xs-right">
23+
24+
<form class="form-inline " style="float: right;">
1925
<input class="form-control" type="text" placeholder="Search">
20-
<button class="btn btn-outline-success" type="submit">Search</button>
26+
27+
<% if user_signed_in? %>
28+
<%= link_to('Logout', destroy_user_session_path, class: 'btn pull-xs-right', method: :delete) %>
29+
<% end %>
2130
</form>
2231
</nav>
2332

public/favicon.ico

38.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)