identity/app/views/fragments/form/checkbox.scala.html (4 lines of code) (raw):

@(field: play.api.data.Field, args: (Symbol, Any)*) @import play.api.templates.PlayMagic.toHtmlArgs <input type="checkbox" name="@field.name" id="@field.id" value="true" @if(field.value.map(_ == "true").getOrElse(false)){ checked } @toHtmlArgs(args.toMap) />