Skip to content

Commit

Permalink
Update rctf backend port, fix name stragglers
Browse files Browse the repository at this point in the history
  • Loading branch information
ky28059 committed Aug 25, 2024
1 parent 70f9b33 commit 2d30915
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Login() {
return (
<div className="container pt-32 pb-24">
<h1 className="text-2xl font-bold mb-8 text-center">
Log in to b01lers CTF
Log in to b01lers internal CTF
</h1>

<LoginContent />
Expand Down
2 changes: 1 addition & 1 deletion app/recover/RecoverContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function RecoverContent() {
return !recovered ? (
<>
<h1 className="text-2xl font-bold mb-8 text-center">
Recover your b01lers CTF account
Recover your b01lers internal CTF account
</h1>

<form
Expand Down
2 changes: 1 addition & 1 deletion app/register/RegisterContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function RegisterContent() {
return !registered ? (
<>
<h1 className="text-2xl font-bold mb-6 text-center">
Register for b01lers CTF
Register for b01lers internal CTF
</h1>
<p className="text-center text-primary mb-8">
Please register one account per team.
Expand Down
2 changes: 1 addition & 1 deletion components/CTFNotStarted.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function CTFNotStarted() {
<FaRegClock className="text-5xl" />
<div>
<h1 className="font-semibold text-2xl">
b01lers CTF has not started yet.
b01lers internal CTF has not started yet.
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
API_BASE: 'http://ctf.b01lers.com:9000/api/v1',
API_BASE: 'http://ctf.b01lers.com:9001/api/v1',
KLODD_URL: 'https://instancer.b01lersc.tf'
},
logging: {
Expand Down

0 comments on commit 2d30915

Please sign in to comment.