How can i toggle an input's style to look like a label

angularjs, css, html, twitter-bootstrap

Solution

<style type="text/css">.asd {
  background: rgba(0, 0, 0, 0);
  border: none;
}

</style>
<input type="text" class="asd" value="Label look like" disabled/>

Problem

Ive got some input fields which i want to style to initially look like labels, and then via angular.js apply a style to them so they can be edited after button is pressed. I'm using bootstrap, is there a inbuilt class i can toggle on and off these inputs?

Original source