Skip to content

Commit

Permalink
Merge pull request #1066 from chandrikarj/redundant-link-on-signup-page
Browse files Browse the repository at this point in the history
Fixes #1065 Removes the duplicate link on signup page
  • Loading branch information
birm authored Jan 11, 2025
2 parents c8d1497 + c534053 commit e0e4de5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/stale_issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Stale Issues and PRs'
on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity.'
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
days-before-stale: 30
days-before-close: 5
days-before-pr-close: -1
4 changes: 1 addition & 3 deletions apps/signup/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ <h2 style="margin-top: -.5em;">User Signup</h2>
<button type="submit" id="sub" class="btn btn-primary btn-block btn-lg sub-btn" onclick="addUser()" disabled>
Please wait ...
</button>
<div class="text-center" onclick="loginPage()" style="margin-top: 0.5em;">Already have an account? </div>
<div class="text-center text-primary" onclick="loginPage()" style="margin-top: 0.5em;">Already have an account? </div>
</div>
<!-- <p class="small text-center">This form is only useful to Admin users. If you reach this page, it's likely that you tried to log into this instance but lack
access. Email the administrator if you want to be added.</p> -->
Expand All @@ -112,8 +112,6 @@ <h2 style="margin-top: -.5em;">User Signup</h2>
If you are an Admin, you can directly signup users.
</p>
</form>
<div class="text-center text-primary" onclick="loginPage()">Already have an account? </div>

</div>

<footer id="footer-layout"></footer>
Expand Down

0 comments on commit e0e4de5

Please sign in to comment.