1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/templates/challenge1.html
2018-02-02 14:58:18 +01:00

34 lines
No EOL
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Challenge 1 - RYG</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="{{ url_for('static', filename='royal.css') }}">
</head>
<body>
<div class="container">
<h1>
Royal Challenge
</h1>
<h2>
La Prima Sfida
</h2>
<p>
L'obiettivo di questa settimana sarà di raggiungere {{ target }}pp totali su osu! Ovvero, di guadagnare <b>{{ target-starting }}pp</b> in qualsiasi modalità partendo da adesso.
</p>
<p>
<small>
Più che altro è per provare una roba con il database della Royal Games, però sarebbe bello che tutti provassero a fare qualche pp...
</small>
</p>
<div class="progress challenge-bar">
<div class="progress-bar challenge-bar" role="progressbar" style="width: {{ (result-starting) / (target-starting) * 100 | round | int }}%">
{{ result-starting | round | int }}pp
</div>
</div>
</div>
</body>
</html>