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 29: Line 29:
   <input type="text" name="username" id="username" />
   <input type="text" name="username" id="username" />
   </label>
   </label>
  <p>
  <p>
  <label>password
  <label>password
  <input type="password" name="password" id="password" />
  <input type="password" name="password" id="password" />
  </label>
  </label>
  </p>
  </p>
  <p>
  <p>
  <label>
  <label>
  <input type="submit" name="submit" id="submit" value="Submit" />
  <input type="submit" name="submit" id="submit" value="Submit" />
  </label>
  </label>
  </p>
  </p>
  </form>
  </form>
  </body>
  </body>

Revision as of 15:24, 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.

<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>

<label>password <input type="password" name="password" id="password" /> </label>

<label> <input type="submit" name="submit" id="submit" value="Submit" /> </label>

</form>
</body>