-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.html
More file actions
62 lines (51 loc) · 1.34 KB
/
page.html
File metadata and controls
62 lines (51 loc) · 1.34 KB
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
<html>
<body>
<span></span>
<div id='page_login' class='page'>
<h3>login</h3>
<button id='mock'>mock</button>
<button id='exam'>exam</button>
<br><br>UI LOGIC<br>
- count < 10 , exam link to count page<br>
- count > 10 , hide mock btn<br>
- count > 10 , exam link to wait page<br>
</div>
<div id='page_mock' class='page'>
<h3>mock</h3>
<button id='mockSubmit'>submit</button>
<br><br>UI LOGIC<br>
- count > 10 , go to wait<br>
- count < 10 , btn link to count page<br>
</div>
<div id='page_count' class='page'>
<h3>count down</h3>
<button id='backBtn'>back to login</button>
<br><br>UI LOGIC<br>
- count > 10 , go to wait<br>
</div>
<div id='page_wait' class='page'>
<h3>wait</h3>
<button id='waitSubmit'>submit</button>
</div>
<div id='page_exam' class='page'>
<h3>exam</h3>
<button id='examSubmit'>submit</button>
</div>
<style>
.page{
width:300px;
height:300px;
background:#fff;
border:1px solid #000;
display:none;
}
</style>
<script src= "https://cdnjs.cloudflare.com/ajax/libs/mobx/3.1.0/mobx.umd.js"></script>
<script src= "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"></script>
<script src="componentBuilder.js"></script>
<script src="store.js"></script>
<script src="app.js"></script>
<script>
</script>
</body></html>