-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.html
More file actions
858 lines (761 loc) · 41 KB
/
main.html
File metadata and controls
858 lines (761 loc) · 41 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="landing/vendor/font-awesome/css/font-awesome.css"/>
<link rel="stylesheet" href="landing/stylesheets/common.css" />
<link rel="stylesheet" href="landing/stylesheets/getStarted.css" />
<link rel="stylesheet" href="landing/stylesheets/main.css" />
<link rel="stylesheet" href="landing/stylesheets/password-recovery.css" />
<link rel="stylesheet" href="landing/stylesheets/register.css" />
<script type="text/javascript" src="landing/js/getStarted.js"></script>
<script type="text/javascript" src="landing/js/localStorageService.js"></script>
<script type="text/javascript" src="landing/js/httpService.js"></script>
<title></title>
</head>
<body>
<div class="b_start-header-top-line">
<div class="b_start-header-top-line--red"></div>
<div class="b_start-header-top-line--green"></div>
<div class="b_start-header-top-line--blue"></div>
<div class="b_start-header-top-line--yellow"></div>
</div>
<script type="text/htmlTpl" id="forgotPasswordTpl">
<div class="b_overlay-forgot-password b_overlay">
<div id="forgot-password-modal" class="b_forgot-password">
<div class="b_forgot-password-body">
<h3 class="b-forgot-password-body-title">Password recovery</h3>
<p class="b-forgot-password-body-text">
In order to reset your password, enter your email. If you have not received an email please check your Spam folder.
</p>
<form id="password-recovery-form" class="side-form" name="passwordRecovery" method="post" >
<div class="control">
<label class="hidden-form-label" for="forgot-popup-email-field">email field for popup password recovery</label>
<input type="email" id="forgot-popup-email-field" name="email" placeholder="Email" required autocomplete="on" tabindex="1" />
</div>
<div class="b_error_msg b_error_msg--email-incorrect hidden" id="confirm_err">
<span>Email is not correct.</span>
</div>
<div class="control">
<input type="submit" value="Send" class="b_reg-btn" tabindex="2">
</div>
<div class="control">
<div onClick="closePopup()" class="b_reg-btn b_close-recovery-password" tabindex="3">CANCEL</div>
</div>
</form>
</div>
</div>
</div>
</script>
<script type="text/htmlTpl" id="changePasswordTpl">
<div class="b_overlay-reset-password b_overlay">
<div id="reset-password-modal" class="b_forgot-password">
<div class="b_forgot-password-body">
<h3 class="b-forgot-password-body-title">Password recovery</h3>
<form id="reset-password-form" class="side-form" name="passwordRecovery" method="post" >
<div class="control">
<label class="hidden-form-label" for="change-password-popup-password-field">password field for change user popup</label>
<input type="password" id="change-password-popup-password-field" name="password" placeholder="Password" required autocomplete="on" tabindex="1"/>
</div>
<div class="control">
<label class="hidden-form-label" for="change-password-popup-password-confirm-field">password confirm field for change user popup</label>
<input type="password" id="change-password-popup-password-confirm-field" name="confirmPassword" placeholder="Confirm password" required autocomplete="on" tabindex="2" />
</div>
<div class="b_error_msg hidden" id="confirm_err">
<span>Passwords does not match</span>
</div>
<div class="control">
<input type="submit" value="Send" class="b_reg-btn" tabindex="3">
</div>
<div class="control">
<div onClick="closePopup()" class="b_reg-btn b_close-recovery-password" tabindex="4">CANCEL</div>
</div>
</form>
</div>
</div>
</div>
</script>
<script type="text/htmlTpl" id="succesRegistrationTpl">
<div class="b_overlay b_overlay_register-popup">
<div id="modal-window" class="b_register-popup">
<div class="b_register-popup-text">
Your account has been successfully created. An email has been sent to you with your credentials.
If you have not received an email please check your Spam folder.
</div>
<div onClick="closePopup()" class="b-register-popup-button-ok b_close-recovery-password" tabindex="1">OK</div>
</div>
</div>
</script>
<div class="b_logo-and-menu">
<div class="b_start-header-logo">
<img class="b_start-header-logo-image" src="landing/images/logo.png" alt="Microsoft Education Delivery logo" />
<p class="b_start-header-logo-text">Microsoft Education Delivery</p>
</div>
<ul class="b_start-header-menu">
<li><a href="#getStarted" class="b_start-header-menu--selected">Get Started</a></li>
<li><a href="#useCases">Use Cases</a></li>
<li><a href="#openSource">Open Source</a></li>
<li><a href="#support">Support</a></li>
<li class="b_start-header-menu-login"><a href="#loginRegister">Login/Register</a></li>
</ul>
</div>
<div id="getStarted">
<header class="b_start-header">
<div class="b_start-header--shape">
</div>
<div class="b_start-header--title">
<h1>Get Started</h1>
</div>
<div class="b_start-header--content">
<div class="b_start-header--content-title"> Microsoft Education Delivery enables the delivery of educational content for individual use and
peer/group sharing
</div>
<div class="b_start-header--content__links">
<a href="#what-is-it"> What is it </a>
<i class="fa fa-circle"> </i>
<a href="#how-work"> How does it work </a>
<i class="fa fa-circle"> </i>
<a href="#how-started"> How to get started </a>
<i class="fa fa-circle"> </i>
<a href="#Download"> Download </a>
</div>
</div>
</header>
<div class="pageBody">
<div class="b_source_content">
<a name="what-is-it"></a>
<h1 class="b_source_content__h">
What is it
</h1>
<div class="b_source_content__span">
Microsoft Education Delivery carries high-quality educational material to mobile phones via mobile networks,
making access to education possible for anyone, anytime! Broadly,
there are two uses: collective and individual learning.
</div>
<div class="b_source_content__img">
<img src="landing/images/panorama.png" class="b_source_content__background" alt="Public school class panorama" />
<div class="b_source_content__img--left">
<div>
Support for collective learning in public schools
</div>
Teachers display the media files to class by connecting the phone to a TV or a projector.
Through Microsoft Education Delivery, free multimedia files can be integrated in the broader curriculum,
making education even more relevant to youth.
The delivered file content provide support for teachers to prepare their lessons.
Since file transfer is free, families can get involved in and benefit from education.
</div>
<div class="b_source_content__img--right">
<div>
Solution for individual learning
</div>
All kinds of organizations, including companies and non-profits, can use Microsoft Education Delivery
for educational training purposes for individuals. When used for individual learning,
the learner can watch materials directly on the device screen, meaning that a TV or a projector is not needed,
nor the TV out capability in the mobile device. The selection of compatible devices for individual learning is hence wider.
</div>
</div>
</div>
<div class="b_source_content">
<a name="how-work"></a>
<h1 class="b_source_content__h">
How does it work
</h1>
<div class="b_step-box">
<img id="step1" class="b_img-box" src="landing/images/step1.png" alt="Step 1. Download software to your windows phone"/>
<img id="step2" class="b_img-box" src="landing/images/step2.png" alt="Step 2. Acess media files on server"/>
<img id="step3" class="b_img-box" src="landing/images/step3.png" alt="Step 3. Download media files from server"/>
<img id="step4" class="b_img-box" src="landing/images/step4.png" alt="Step 4. View files on phone, TV or data projector"/>
</div>
<div class="b_source_content__span">
For the Microsoft Education Delivery solution to work, you need:
</div>
<div class="b_source_content__span b_source_content-list">
<i class="fa fa-circle b_source_content__list"></i>
The Microsoft Education Delivery software (free)
</div>
<div class="b_source_content__span b_source_content-list">
<i class="fa fa-circle b_source_content__list"></i>
Microsoft phone(s): the service runs on Windows Phone 8.1
</div>
<div class="b_source_content__span b_source_content-list">
<i class="fa fa-circle b_source_content__list"></i>
TV/projector and cable (if used for collective learning in a class room)
</div>
<div class="b_source_content__span b_source_content-list">
<i class="fa fa-circle b_source_content__list"></i>
Content: educational media files (some materials are available for free)
</div>
<div class="b_source_content__span b_source_content-list">
<i class="fa fa-circle b_source_content__list"></i>
Server: hosted cloud server or own server and server management
</div>
<div class="b_source_content__span">
The software needs to be installed on a mobile phone and on an administrative computer;
a teacher can then access, download and display a catalog of media files, which are stored and managed on a remote server.
Once downloaded, the file is saved and can be displayed at any time.
</div>
</div>
<div class="b_gray">
<div class="b_source_content">
<a name="how-started"></a>
<h1 class="b_source_content__h blue-title">
How to get started
</h1>
<div class="b_source_content__span">
Get to know this site to learn all you need to know about Microsoft Education Delivery and how to use it.
Talk to the people around you and get them excited too.
Microsoft Education Delivery is free for anyone to start using or developing further.
</div>
<div class="b_source_content__span">
To get Microsoft Education Delivery running in a school or organization,
it's easy to get started by using the existing materials. To produce custom content,
experience tells us that it's good to have schools, government agency and NGO work together.
</div>
</div>
</div>
<div class="b_dark">
<div class="b_source_content b_download">
<a name="Download"></a>
<h1 class="b_source_content__h">
Download
</h1>
<div class="b_source_content__span">
<div>
Access Windows Marketplace with your mobile device.
</div>
<div class="downloads-btn">
<a href="http://www.windowsphone.com/s?appid=56f6a178-33fc-4b89-b3be-8a99849e6553" role="link"><span class="downloads-btn--hidden">Download application for windows phone 8.1</span><div class="download-btn"></div></a>
<a href="http://apps.microsoft.com/windows/en-tt/app/microsoft-education-delivery/6fc4bbc2-5e33-4a8b-9034-36fdfd14f176"><span class="downloads-btn--hidden">Download application for windows 10</span><div class="download2-btn"></div></a>
</div>
</div>
</div>
</div>
</div>
<footer class="b_start-footer">
<div class="b_start-footer__copyright">
© 2016 Microsoft Corporation. All rights reserved.
</div>
<div class="b-start-footer-bottom-menu">
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#getStarted">Get Started</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#useCases">Use Cases</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#openSource">Open Source</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#support">Support</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="http://go.microsoft.com/fwlink/?LinkID=206977">Terms of Use</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="http://go.microsoft.com/fwlink/?LinkId=521839">Privacy & Cookies</a>
</div>
</div>
</footer>
</div>
<div id="useCases">
<header class="b_start-header">
<div class="b_start-header--shape">
</div>
<div class="b_start-header--title">
<h1>Use Cases</h1>
</div>
<div class="b_start-header--content">
<div class="b_start-header--content-title"> Microsoft Education Delivery enables the delivery of educational content for individual use and
peer/group sharing
</div>
<div class="b_start-header--content__links">
<a href="#work">Сoncept</a>
<i class="fa fa-circle"> </i>
<a href="#use"> Taking MED into use</a>
<i class="fa fa-circle"> </i>
<a href="#example"> Example screenshots and video</a>
</div>
</div>
</header>
<div class="pageBody">
<div class="b_source_content">
<a name="work"></a>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
Concept
</div>
The software initially was designed to support collective learning and public schools,
but it can also be used for individual learning, such as training purposes by enterprises and non-profits as well.
In essence, the concept is the same for the public school and the enterprise use case.
The success of the Microsoft Education Delivery program comes down to collaboration between different contributors.
Each collaborator brings their own expertise and input, to respond to ensure for example access, up-to-date materials, teacher quality,
timeliness and cost-efficiency.
</div>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
Public education/collective learning use case
</div>
What's needed:
</div>
<div class="b_source_content__span b_source_content-list">
<i class="fa fa-circle b_source_content__list"></i>
the Microsoft Education Delivery software and concept provided by Microsoft (free)
</div>
<div class="b_source_content__span b_source_content-list">
<i class="fa fa-circle b_source_content__list"></i>
technical infrastructure (a mobile phone and a TV)
</div>
<div class="b_source_content__span b_source_content-list">
<i class="fa fa-circle b_source_content__list"></i>
teacher training (technical and professional development)
</div>
<div class="b_source_content__span b_source_content-list">
<i class="fa fa-circle b_source_content__list"></i>
multimedia content (educational material)
</div>
<div class="b_source_content__span b_source_content-list">
<i class="fa fa-circle b_source_content__list"></i>
a public organization like the Ministry of Education and/or a non-profit organization to provide the
educational content and training, and to draw these components together and to facilitate the
interaction of the parties.
The software needs to be installed on a mobile phone and on an administrative computer;
a teacher can then access, download and display a catalog of media files,
which are stored and managed on a remote server. Once downloaded,
the file is saved and can be displayed at any time.
</div>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
Private organization/individual learning use case
</div>
Private organizations can use Microsoft Education Delivery to deliver their own educational content for
individual learning. In this case, a TV or projector is not necessary,
as the content can be watched directly from a mobile device.
</div>
</div>
<div class="b_gray">
<div class="b_source_content">
<a name="use"></a>
<h1 class="b_source_content__h">
Taking MED into use
</h1>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
Deployment in new schools or organizations
</div>
You can start now - Microsoft Education Delivery is free for everybody to download and use.
This site contains all the information you need to start using Microsoft Education Delivery
in a new school or organization. Therefore,
to start sharing educational material with Microsoft Education Delivery, you can just start.
</div>
<div class="b_source_content__span">
Producing new educational material – to get even more out of Microsoft Education Delivery,
you can produce your own educational content, be it audio, video or photos.
The time and effort needed for the content creation depends on the scale of the project,
and whether the content is ready to be uploaded or whether it needs to be produced from scratch.
The creation of new content can take anything, ranging from a simple upload of your already created
.mp4 video, to more custom and professionally made videos. The system is flexible,
and the choice is up to the user.
It is up to the administrator to decide the complexity and degree of involvement.
</div>
</div>
</div>
<div class="b_dark">
<div class="b_source_content">
<a name="example"></a>
<h1 class="b_source_content__h">
Example screenshots
</h1>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
Screenshots
</div>
See how it looks. These screenshots show the steps of browsing for a media item and downloading it with a mobile device.
</div>
<img class="b_screen-shot" src="landing/images/screens.png" alt="Mobile application screenshots"/>
</div>
</div>
</div>
<footer class="b_start-footer">
<div class="b_start-footer__copyright">
© 2016 Microsoft Corporation. All rights reserved.
</div>
<div class="b-start-footer-bottom-menu">
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#getStarted">Get Started</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#useCases">Use Cases</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#openSource">Open Source</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#support">Support</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="http://go.microsoft.com/fwlink/?LinkID=206977">Terms of Use</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="http://go.microsoft.com/fwlink/?LinkId=521839">Privacy & Cookies</a>
</div>
</div>
</footer>
</div>
<div id="openSource">
<header class="b_start-header">
<div class="b_start-header--shape">
</div>
<div class="b_start-header--title">
<h1>Open Source</h1>
</div>
<div class="b_start-header--content">
<div class="b_start-header--content-title"> Microsoft Education Delivery enables the delivery of educational content for individual use and
peer/group sharing
</div>
<div class="b_start-header--content__links">
<a href="#community"> Developer community </a>
<i class="fa fa-circle"> </i>
<a href="#source-code"> Source code </a>
</div>
</div>
</header>
<div class="pageBody">
<div class="b_source_content">
<a name="community"></a>
<h1 class="b_source_content__h">
Developer community
</h1>
<div class="b_source_content__span">
Would you like to develop a new feature or make enhancements to Microsoft Education Delivery?
We offer you the source code, along with all the tools and documentation you need to take
Microsoft Education Delivery where you need it to go.
</div>
<div class="b_source_content__span">
If you have an idea for a great new feature, send us a patch!
</div>
<div class="b_source_content__span">
Whatever your ideas, we hope you'll share them with us for the benefit of our users and the developer community.
</div>
</div>
<div class="b_gray">
<div class="b_source_content">
<a name="source-code"></a>
<h1 class="b_source_content__h">
Source code
</h1>
<div class="b_source_content__span">
Microsoft Education Delivery is available as Open Source, under Berkely Software Distribution BSD,
a family of permissive free software licences, imposing minimal restrictions on the redistribution of covered software.
</div>
<div class="b_source_content__span">
It is hosted in
<a href="https://github.com/microsofteducationdelivery">
github.com/microsofteducationdelivery
</a>
</div>
</div>
</div>
</div>
<footer class="b_start-footer">
<div class="b_start-footer__copyright">
© 2016 Microsoft Corporation. All rights reserved.
</div>
<div class="b-start-footer-bottom-menu">
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#getStarted">Get Started</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#useCases">Use Cases</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#openSource">Open Source</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#support">Support</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="http://go.microsoft.com/fwlink/?LinkID=206977">Terms of Use</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="http://go.microsoft.com/fwlink/?LinkId=521839">Privacy & Cookies</a>
</div>
</div>
</footer>
</div>
<div id="support">
<header class="b_start-header">
<div class="b_start-header--shape">
</div>
<div class="b_start-header--title">
<h1>Support</h1>
</div>
<div class="b_start-header--content">
<div class="b_start-header--content-title"> Microsoft Education Delivery enables the delivery of educational content for individual use and
peer/group sharing
</div>
<div class="b_start-header--content__links">
<a href="#general"> General </a>
<i class="fa fa-circle"> </i>
<a href="#implementation"> Implementation </a>
<i class="fa fa-circle"> </i>
<a href="#quesions"> Technical question </a>
</div>
</div>
</header>
<div class="pageBody">
<div class="b_source_content">
<a name="general"></a>
<h1 class="b_source_content__h">
General
</h1>
<div class="b_column-container">
<div class="b_source_content--left">
<div class="b_source_content__span">
<div class="b_source_content__span__title">
What is Microsoft Education Delivery?
</div>
Microsoft Education Delivery carries high-quality educational material to mobile phones over mobile networks,
making access to education possible for anyone, anytime!
Through the integration of free multimedia files in the broader curriculum, education is made relevant to youth.
The file content supports the teachers in preparing their lessons.
Teacher can display the media files by connecting the phone to a TV or a projector. Since file transfer is free,
families can get involved in and benefit from education.
</div>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
How does Microsoft Education Delivery work?
</div>
The idea of the Microsoft Education Delivery solution is simple,
delivering multimedia content via a mobile phone.
</div>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
What are the benefits of Microsoft Education Delivery?
</div>
Microsoft Education Delivery introduces a cost-effective way for carrying rich educational content and
increase standards of teaching to schools and organizations alike.
</div>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
How can I get the Microsoft Education Delivery software?
</div>
Microsoft Education Delivery is free for everybody to download and use. See the download instructions to get it.
</div>
</div>
<div class="b_source_content--right">
<div class="b_source_content__span">
<div class="b_source_content__span__title">
What is the target group for Microsoft Education Delivery?
</div>
The software was initially designed to support collective learning and public schools,
but it can also be used by enterprises and non-profits for educational training purposes.
For more information about different use cases, see the Concept and use cases.
</div>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
Where is Microsoft Education Delivery being used?
</div>
So far, the solution has been used in collective learning by public schools on three different continents.
</div>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
What languages is Microsoft Education Delivery available in?
</div>
Microsoft Education Delivery is available in English.
The content can be created in any language that is supported by the used mobile devices.
</div>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
Other questions
</div>
If you have questions or need any help concerning the solution please <a href="mailto:[email protected]">contact us</a>
</div>
</div>
</div>
</div>
<div class="b_source_content">
<a name="implementation"></a>
<h1 class="b_source_content__h">
Implementation
</h1>
<div class="b_column-container">
<div class="b_source_content--left">
<div class="b_source_content__span">
<div class="b_source_content__span__title">
How much does the implementation of the software system cost?
</div>
While the software is free of charge, there are costs involved in taking Microsoft Education Delivery into use.
The cost of implementation varies greatly depending on factors, such as country,
content used (using free content vs. creating new content), server choice
(using our hosted, ready-to-use cloud server vs. setting up own server),
need for mobile phones and network costs.
</div>
</div>
<div class="b_source_content--right">
<div class="b_source_content__span">
<div class="b_source_content__span__title">
Can I get help with taking Microsoft Education Delivery into use?
</div>
The materials on this site are designed to help you set up Microsoft Education Delivery on your own.
With the info materials, demo credentials, content examples,
use cases, you have all you need to take Microsoft Education Delivery into use.
The software is Open Source, so you are also welcome to develop it further.
</div>
</div>
</div>
</div>
<div class="b_source_content">
<a name="quesions"></a>
<h1 class="b_source_content__h">
Technical questions
</h1>
<div class="b_column-container">
<div class="b_source_content--left">
<div class="b_source_content__span">
<div class="b_source_content__span__title">
What devices is Microsoft Education Delivery compatible with?
</div>
The software runs on Windows 8.1 and Windows 10 devices.
For class room usage, Microsoft Education Delivery requires a device with a “TV-out”,
or video output port, meaning that the phone can be attached to a TV or projector to allow for the display of the content on a screen.
This is not necessary when using the software for personal learning.
</div>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
Is Internet connection needed to use Microsoft Education Delivery?
</div>
The videos reside on a cloud server, so an internet connection is necessary,
either through a data connection via cellular network (data package) or a Wi-Fi connection.
However, once the videos have been downloaded, there is no further need for internet connection.
</div>
</div>
<div class="b_source_content--right">
<div class="b_source_content__span">
<div class="b_source_content__span__title">
What content can Microsoft Education Delivery have?
</div>
At the moment, Microsoft Education Delivery supports audio, photo, videos.
</div>
<div class="b_source_content__span">
<div class="b_source_content__span__title">
Do you need to set up a server when taking Microsoft Education Delivery into use?
</div>
As an implementer of Microsoft Education Delivery you have two options:
you can either use our ready-to-use cloud server which provides site management via a web browser,
OR you can set up the content management service yourself on your own server,
provided that you have your own static ip address. The choice is yours.
</div>
</div>
</div>
</div>
</div>
<footer class="b_start-footer">
<div class="b_start-footer__copyright">
© 2016 Microsoft Corporation. All rights reserved.
</div>
<div class="b-start-footer-bottom-menu">
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#getStarted">Get Started</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#useCases">Use Cases</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#openSource">Open Source</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#support">Support</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="http://go.microsoft.com/fwlink/?LinkID=206977">Terms of Use</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="http://go.microsoft.com/fwlink/?LinkId=521839">Privacy & Cookies</a>
</div>
</div>
</footer>
</div>
<div id="loginRegister">
<div id="login-box" class="box">
<form id="login-form" class="side-form" name="login" method="post">
<div class="control">
<h1>Login</h1>
<label class="hidden-form-label" for="login-name-field">field for login name</label>
<input type="text" id="login-name-field" name="login" placeholder="Your login" required autocomplete="on"/>
</div>
<div class="control">
<label class="hidden-form-label" for="login-password-field">field for login password</label>
<input type="password" id="login-password-field" name="loginPass" placeholder="Password" required/>
<div class="b_error_msg hidden" id="login_err">
<span>Login/password combination is incorrect.</span>
</div>
</div>
<div class="control">
<a class="b_link--privacy b_link--color" href="http://go.microsoft.com/fwlink/?LinkId=521839">Privacy & Cookies</a>
</div>
<div class="control">
<input type="submit" value="Login" class="b_login-btn">
</div>
<!--<div class="control">
<a class="live-id-href"
href="https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=${clientID}&response_type=code&response_mode=query&scope=https%3A%2F%2Fgraph.microsoft.com%2FUser.Read&redirect_uri=http://localhost:3000/api/auth/login-with-live-id" class="b_login-btn">Log in with a Microsoft Account</a>
</div> -->
<div class="control">
<a class="forgot-pass" href="" id="forgot-pass">FORGOT PASSWORD</a>
</div>
<!--<div class="control">
<a href="#" class="live_id_login_btn forgot-pass">LogIn via Live ID</a>
</div> -->
</form>
</div>
<div id="register-box" class="box" >
<form id="register-form" class="side-form" name="register" method="post">
<div class="control">
<h1>Register</h1>
<label class="hidden-form-label" for="register-name-field">field for registration name</label>
<input type="text" id="register-name-field" name="name" placeholder="Name" required autocomplete="on"/>
</div>
<div class="control">
<label class="hidden-form-label" for="register-email-field">field for registration email</label>
<input type="email" id="register-email-field" name="email" placeholder="Email" required autocomplete="on"/>
<div class="b_error_msg hidden" id="reg_err">
<span>The email address is already taken. Please choose another one in order to sign up new account.</span>
</div>
</div>
<div class="control">
<a class="b_link--color" href="http://go.microsoft.com/fwlink/?LinkId=521839">Privacy & Cookies</a>
</div>
<div class="control">
<input type="submit" value="Continue" class="b_reg-btn">
</div>
</form>
</div>
<div style="clear: both; width: 100%"></div>
<footer class="b_start-footer">
<div class="b_start-footer__copyright">
© 2016 Microsoft Corporation. All rights reserved.
</div>
<div class="b-start-footer-bottom-menu">
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#getStarted">Get Started</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#useCases">Use Cases</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#openSource">Open Source</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="#support">Support</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="http://go.microsoft.com/fwlink/?LinkID=206977">Terms of Use</a>
</div>
<div class="b_start-footer__link">
<a class="b_start-footer-link" href="http://go.microsoft.com/fwlink/?LinkId=521839">Privacy & Cookies</a>
</div>
</div>
</footer>
</div>
</body>
</html>