Note: You are currently viewing documentation for Moodle 2.2. Up-to-date documentation for the latest stable version is available here: itunes U login.

itunes U login: Difference between revisions

From MoodleDocs
No edit summary
No edit summary
Line 24: Line 24:
Create the html code as a Form context substitutingthe URL with your own iTunes U course URL.
Create the html code as a Form context substitutingthe URL with your own iTunes U course URL.


<body>
<nowiki><pre><body>
<form id="moodlelogin" name="moodlelogin" method="post" action="'''your iTunes U course URL goes here'''">
<form id="moodlelogin" name="moodlelogin" method="post" action="'''your iTunes U course URL goes here'''">
   <label>username
   <label>username
Line 40: Line 40:
   </p>
   </p>
</form>
</form>
</body>
</body></nowiki></pre>

Revision as of 15:09, 28 July 2008

Overview

You can create an HTML block to sign in to iTunes U from your Moodle course. iTunes U can be used as a storage site for large media files used in courses. Rather than having students open a new page or tab in their browser then navigate to your iTunes U site and THEN log in, simply create a block on your course page that lets them sign in directly from Moodle.

Instructions

Step 1.

Locate the web address of the iTunes U course by dragging the iTunes U course button (located in the bread crumbs trail in iTunes) to your desktop and opening it in a text editing program like Text Edit or Text Pad.

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>URL</key> <string>https://deimos.apple.com/WebObjects/Core.woa/BrowsePrivately/colum.edu</string> </dict> </plist>

Step 2.

Create the html code as a Form context substitutingthe URL with your own iTunes U course URL.

<pre><body> <form id="moodlelogin" name="moodlelogin" method="post" action="'''your iTunes U course URL goes here'''"> <label>username <input type="text" name="username" id="username" /> </label> <p> <label>password <input type="password" name="password" id="password" /> </label> </p> <p> <label> <input type="submit" name="submit" id="submit" value="Submit" /> </label> </p> </form> </body>