Skip to content

Commit

Permalink
fix: Links
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarMWarraich committed Sep 22, 2024
1 parent 8343c3b commit 2c41c0b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ gem "sassc-rails", "~> 2.1"
gem 'font-awesome-sass', '~> 5.15.1'

# gem 'ruby-stableDiffusion', path: '/home/owa/Docs/ror/ruby-stablediffusion/'
gem 'ruby-stableDiffusion', github: 'OmarMWarraich/ruby-stablediffusion', ref: 'a9a30a8'
gem 'ruby-stableDiffusion', github: 'OmarMWarraich/ruby-stablediffusion', ref: '145185d'

gem "sidekiq"

Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GIT
remote: https://github.com/OmarMWarraich/ruby-stablediffusion.git
revision: a9a30a8b27f53b35d96ebc613b39ae7983a76902
ref: a9a30a8
revision: 145185db725284930e53ded2b481874c72220a27
ref: 145185d
specs:
ruby-stableDiffusion (0.1.0)
json (~> 2.1, >= 2.1.0)
Expand Down
5 changes: 5 additions & 0 deletions app/views/registrations/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@
<%= f.submit "Sign up", class: "btn btn-primary btn-lg" %>
</div>
</div>
<div class="d-flex justify-content-center mx-4 mb-3 mb-lg-4">
<div class="actions">
<%= link_to "Log in", new_session_path, class: "btn btn-secondary btn-md" %>
</div>
</div>
<% end %>
</div>
<div class="col-md-10 col-lg-6 col-xl-7 d-flex align-items-center order-1 order-lg-2">
Expand Down
7 changes: 6 additions & 1 deletion app/views/sessions/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,13 @@
<%= f.submit "Log in", class: "btn btn-primary btn-lg" %>
</div>
</div>
<div class="d-flex justify-content-center mx-4 mb-3 mb-lg-4">
<div class="actions">
<%= link_to "Sign up", new_registration_path, class: "btn btn-secondary btn-md" %>
</div>
</div>
<div class="text-center">
<%= link_to 'Forgot Password', new_password_reset_path %>
<%= link_to 'Forgot Password', new_password_reset_path, class: "btn btn-danger btn-sm" %>
</div>
<% end %>
</div>
Expand Down

0 comments on commit 2c41c0b

Please sign in to comment.