-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdone.html
148 lines (123 loc) · 4.35 KB
/
done.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!Doctype html>
<html>
<head>
<!-- Primary Color #3784cc -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" type="image/jpeg" href="/favicon.jpeg">
<title>MSP-Typescript</title>
<!-- Javascript -->
<script src="/lib/jQuery/jquery-3.2.1.js"></script>
<script src="/lib/Semantic/semantic.js"></script>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="/lib/Semantic/semantic.css">
<link rel="stylesheet" type="text/css" href="/css/animate.css">
<link rel="stylesheet" type="text/css" href="/css/style.css">
<script src="https://www.gstatic.com/firebasejs/3.9.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyBZGBrTHYn1YfCbJp5Qc-Q0FcCdqU5qguA",
authDomain: "msp-ts.firebaseapp.com",
databaseURL: "https://msp-ts.firebaseio.com",
projectId: "msp-ts",
storageBucket: "msp-ts.appspot.com",
messagingSenderId: "999174857938"
};
firebase.initializeApp(config);
</script>
<script>
function writeNewPost(){
var newPostKey = firebase.database().ref().child('posts').push().key;
var postData = {
"phone": "010-0000-0000",
"name": "나윤환"
}
var updates = {};
updates['/apply/' + newPostKey] = postData;
// updates['/user-posts/' + uid + '/' + newPostKey] = postData;
return firebase.database().ref().update(updates);
}
</script>
<script>
$(document).ready(function() {
// fix menu when passed
$('.masthead')
.visibility({
once: false,
onBottomPassed: function() {
$('.fixed.menu').transition('fade in');
},
onBottomPassedReverse: function() {
$('.fixed.menu').transition('fade out');
}
});
// create sidebar and attach to menu open
$('.ui.sidebar').sidebar('attach events', '.toc.item');
});
</script>
</head>
<body>
<!-- Following Menu -->
<div class="ui large top fixed hidden menu">
<div class="ui container">
<a class="item" href="/">소개</a>
<a class="item active apply" href="/apply.html">신청</a>
</div>
</div>
<!-- Sidebar Menu -->
<div class="ui vertical inverted sidebar menu">
<a class="item" href="/">소개</a>
<a class="item active apply" href="/apply.html">신청</a>
</div>
<!-- Page Contents -->
<div class="pusher">
<div class="ui inverted vertical masthead center aligned segment" style="background:#3784cc !important">
<div class="ui container" >
<div class="ui large secondary inverted pointing menu" style="border-color: transparent;">
<a class="toc item">
<i class="sidebar icon"></i>
</a>
<a class="item" href="/">소개</a>
<a class="item active apply" href="/apply.html">신청</a>
</div>
</div>
<div class="ui text container" >
<h1 class="ui inverted header">
Typescript with MSP
</h1>
<h2>Microsoft Student Partners와 함께하는 Typescript</h2>
<br />
<br />
</div>
</div>
<div class="ui vertical stripe segment">
<div class="ui text container">
<h1 class="ui aligned center header">
신청이 완료되었습니다.
</h1>
<br /><br /><br /><br />
<a class="ui huge basic fluid button" href="/">홈으로</a>
</div>
</div>
<div class="ui inverted vertical footer segment">
<div class="ui container">
<div class="ui stackable inverted divided equal height stackable grid">
<div class="three wide column">
<h4 class="ui inverted header">Menu</h4>
<div class="ui inverted horizontal ink list">
<a href="#" class="item">소개</a>
<a href="#" class="item">신청</a>
</div>
</div>
<div class="ten wide column">
<h4 class="ui inverted header">Infomation</h4>
<p>본 행사는 Microsoft에서 운영하는 Microsoft Student Partners 대학생 단체에서 진행하는 행사로 Microsoft 본사에서 주최하는 공식적인 행사는 아닙니다.</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>