|
3 | 3 | <head> |
4 | 4 | <meta charset="utf-8" /> |
5 | 5 | <title>Semantic UI + Angular.JS</title> |
6 | | - <link href="../../../bower_components/semantic/build/packaged/css/semantic.min.css" rel="stylesheet" type="text/css" /> |
| 6 | + <link href="../../../bower_components/semantic/dist/semantic.min.css" rel="stylesheet" type="text/css" /> |
7 | 7 | </head> |
8 | 8 | <body ng-controller="RootCtrl"> |
| 9 | + <button class="ui primary button" ng-click="open_modal()">Open</button> |
9 | 10 | <modal ng-model="show_modal"> |
10 | | - <i class="close icon" ng-click="close_modal()"></i> |
| 11 | + <i class="close icon"></i> |
11 | 12 | <div class="header"> |
12 | | - Change Your Homepage |
| 13 | + Profile Picture |
13 | 14 | </div> |
14 | 15 | <div class="content"> |
15 | | - <div class="left"> |
16 | | - <i class="home icon"></i> |
| 16 | + <div class="ui medium image"> |
| 17 | + <img src="http://fakeimg.pl/250x250"> |
17 | 18 | </div> |
18 | | - <div class="right"> |
19 | | - <p>Are you sure you want to change your homepage to <b>Poodle.com</b>?</p> |
| 19 | + <div class="description"> |
| 20 | + <div class="ui header">We've auto-chosen a profile image for you.</div> |
| 21 | + <p>We've grabbed the following image from the <a href="https://www.gravatar.com" target="_blank">gravatar</a> image associated with your registered e-mail address.</p> |
| 22 | + <p>Is it okay to use this photo?</p> |
20 | 23 | </div> |
21 | 24 | </div> |
22 | 25 | <div class="actions"> |
23 | | - <div class="two fluid ui buttons"> |
24 | | - <div class="ui negative labeled icon button"> |
25 | | - <i class="remove icon"></i> |
26 | | - No |
27 | | - </div> |
28 | | - <div class="ui positive right labeled icon button"> |
29 | | - Yes |
30 | | - <i class="checkmark icon"></i> |
31 | | - </div> |
| 26 | + <div class="ui black button"> |
| 27 | + Nope |
| 28 | + </div> |
| 29 | + <div class="ui positive right labeled icon button"> |
| 30 | + Yep, that's me |
| 31 | + <i class="checkmark icon"></i> |
32 | 32 | </div> |
33 | 33 | </div> |
34 | 34 | </modal> |
| 35 | + <script src="../../../bower_components/jquery/dist/jquery.min.js"></script> |
35 | 36 | <script src="../../../bower_components/angular/angular.min.js" type="text/javascript"></script> |
36 | | - <script src="../../angularify.semantic.js" type="text/javascript"></script> |
| 37 | + <script src="../../../bower_components/semantic/dist/semantic.min.js" type="text/javascript"></script> |
37 | 38 | <script src="../modal.js" type="text/javascript"></script> |
38 | 39 | <script src="controllers.js" type="text/javascript"></script> |
39 | 40 | </body> |
|
0 commit comments