Merge branch 'master' into ticket/TURNIERE-206

This commit is contained in:
Daniel Schädler 2022-07-01 22:12:54 +02:00
commit 407cc5a596
Signed by: Malaber
GPG Key ID: 4BB175A9617E4B11
4 changed files with 6 additions and 8 deletions

View File

@ -22,8 +22,8 @@ export class DominanceShower extends React.Component {
<td className="h4 text-danger text-right pb-0">{this.props.stats.points_received}</td>
</tr>
<tr>
<td className="smaller pt-0">Punkte erzielt</td>
<td className="text-right smaller pt-0">Punkte kassiert</td>
<td className="smaller pt-0">Becher geworfen</td>
<td className="text-right smaller pt-0">Becher kassiert</td>
</tr>
</tbody>
</Table>

View File

@ -79,8 +79,8 @@ function GroupScoresTable(props) {
<tr>
<th>Team</th>
<th>Punkte</th>
<th>erzielt</th>
<th>kassiert</th>
<th>Becher geworfen</th>
<th>Becher kassiert</th>
</tr>
</thead>
<tbody>

View File

@ -74,8 +74,6 @@ class InvisibleLoginLogoutButtons extends React.Component {
return (<ButtonGroup className="nav-item">
<Button outline color="success" href="/login"
className="navbar-btn my-2 my-sm-0 px-5">Login</Button>
<Button outline color="success" href="/register"
className="navbar-btn my-2 my-sm-0 px-5">Registrieren</Button>
</ButtonGroup>);
}
}

View File

@ -34,7 +34,7 @@ class Register extends React.Component {
return (<Container className="py-5">
<Card className="shadow">
<CardBody>
<h1 className="custom-font">Account anlegen</h1>
<h1 className="custom-font">Registrierung aktuell nicht möglich!</h1>
<RegisterForm/>
<div className="mt-3">
<a href="/login" className="mr-3">Ich habe bereits einen Account!</a>
@ -100,7 +100,7 @@ class RegisterForm extends React.Component {
Du akzeptierst die <a href="/privacy">Datenschutzbestimmungen</a>, wenn du auf Registrieren klickst.
</FormText>
<Button onClick={() => this.registerUser()}
color="success" size="lg" className="w-100 shadow-sm">Registrieren</Button>
color="success" size="lg" className="w-100 shadow-sm disabled">Registrieren</Button>
<VisibleRegisterErrorList/>
</Form>);
}