-
Notifications
You must be signed in to change notification settings - Fork 3
/
flexible.html
63 lines (50 loc) · 2.08 KB
/
flexible.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> flexible content</title>
<link rel="stylesheet" href="staticPages.css">
<style>
</style>
</head>
<body>
<div class="container">
<!-- <div class="header"></div> -->
<h1> <h1 title="What are flexible contests?" class="article-title">
What are flexible contests?
</h1></h1>
<p>
Flexible contests are private contests that don't get cancelled even if only two teams join. Yes, that's correct. 😀
</p>
<p>When you create a private contest and make it a 'Flexible Contest' to ensure:</p>
<p>
✅ The contest takes place even if just two teams join (no cancellation even if all spots don't fill up)
</p>
<p>
✅ The Prize Pool for the contest keeps increasing as more and more teams join
</p>
<!-- <p>👉 How do I create a Flexible Contest?</p> -->
<p>Easy! Head to the 'Create Contest' page, tap on 'Create Flexible Contest', and that's it. 😎</p>
<!-- <p>👉 How do I know that the contest I'm joining is a Flexible Contest?</p> -->
<p>Easy again! Look for this icon on the contest invite page. 🤓</p>
<p>That's easy too! Tap on the Contest > Winnings, and you'll see it under Max Fill and Current Fill. 😇</p>
<p>1️⃣<span>Max Fill shows winnings if all spots are fill</span></p>
<p>2️⃣ Current Fill shows current contest winnings</p>
<div class="footer">
<p>Was this helpful</p>
<button onclick="Yes()">Yes</button>
<button onclick="No()">No</button>
</div>
</div>
</body>
<script>
function Yes(){
alert("Thanks for Reply")
}
function No(){
prompt("Thanks for feedback, how can we improve")
}
</script>
</html>