blob: 386c3cc12ae7fe626e1df65416c6b3627bd73579 (
plain)
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
|
<template>
<div>
<h2>Nabór 2020</h2>
<div class="contact">
<div>
<b>19 PDH Puszcza</b>
<p>drużynowy Patryk Niedźwiedziński</p>
<p>Tel: 695516492</p>
<a href="mailto:patryk.niedzwiedzinski@zhr.pl">patryk.niedzwiedzinski@zhr.pl</a>
</div>
<div>
<b>19 PDH Pikada</b>
<p>drużynowa Aleksandra Komasa</p>
<p>Tel: 882152416</p>
<a href="mailto:alekandra.komasa@zhr.pl">aleksandra.komasa@zhr.pl</a>
</div>
</div>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdBY-WAwsy13LQIoNl9MGYzBFZbTx8ynGf19oMyCMwurj1g8Q/viewform?embedded=true" width="100%" height="1250" frameborder="0" marginheight="0" marginwidth="0">Ładuję…</iframe>
</div>
</template>
<style scoped>
h2 {
margin-top: 20px;
}
.contact {
width: 100%;
max-width: 640px;
display: flex;
flex-flow: row wrap;
justify-content: space-around;
}
.contact > div {
margin: 10px;
}
</style>
|