Skip to content

Instantly share code, notes, and snippets.

@daichi1021
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daichi1021/072e435a64d0bfe4ccdd to your computer and use it in GitHub Desktop.
Save daichi1021/072e435a64d0bfe4ccdd to your computer and use it in GitHub Desktop.
<apex:page standardController="Account" showHeader="false" sidebar="false" standardStylesheets="false" extensions="AccountMobileExtension">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="//cdn.muicss.com/mui-0.0.1/css/mui.min.css" rel="stylesheet" type="text/css" />
<script src="//cdn.muicss.com/mui-0.0.1/js/mui.min.js"></script>
</head>
<apex:form id="form" styleClass="form">
<div class="mui-container">
<div class="mui-panel">
<apex:outputLabel value="{!$ObjectType.Account.fields.Name.label}" for="accountName"/>
<apex:inputField id="accountName" styleClass="mui-form-control" value="{!account.name}" />
<apex:commandButton styleClass="mui-btn mui-btn-primary mui-btn-raised" value="Save" action="{!doSave}" />
</div>
</div>
</apex:form>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment