It's easy to embed a Wistia login form on your website and style it how you like. Use the code below as a template, but substitute your Wistia account hostname for app.wistia.com. For example, if your account is located at http://myaccount.wistia.com, then you'd change all instances of http://app.wistia.com with http://myaccount.wistia.com.

Here's the HTML code for a basic Wistia login form:

<form action="https://app.wistia.com/sessions" method="post"> 
  <p> 
    <label for='session_login'>Email</label> 
    <input id="session_login" name="session[login]" type="text" /> 
  </p> 
  <p> 
    <label for='session_password'>Password</label> 
    <input id="session_password" name="session[password]" type="password" />
  </p> 
  <p> 
    <button type='submit'>Login to Wistia</button> 
  </p>
</form>


Here's an example of the sample code in action. Try the login form, it really works and it's secure.